What is a linked list?

Source: Internet
Author: User

A linked list is a mathematical abstract model that uses frequent data structures like a chain. It can solve many mathematical problems, such as the Monkey King election problem.

The linked list is also a linear structure. Its full name isChain storage structure of linear tablesThis is because he has another brother namedSequential storage structure of linear tablesBrother has its advantages: Fast random access, but also has its own weakness: When performing insert or delete operations, a large number of elements need to be moved, Which is inefficient.

What is the difference between them?

Sequential storage structure of linear tables: logically adjacent elements are also adjacent to physical locations (memory;

Chain storage structure of linear tables: logically adjacent elements are stored in physical locations (memory ).Not necessarilyAdjacent;

In fact, the linked list has many brothers, including single-chain tables, circular linked lists, and two-way linked lists.

The most basic data element in a linked list isEndPoint(Node), which includes two domains:

Data domain: Used to store its own data;

Pointer Field: Address used to store directly successor elements;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.