Advantages and disadvantages of arrays and linked lists

Source: Internet
Author: User

# # Advantages and disadvantages Comparison
# Advantages of Linked list
-Easy to create and add, randomly stored in free memory without the need for contiguous memory space
-efficiency is the same as array when all elements need to be read
-the list is more efficient when you insert or delete elements in the middle without considering the time of the search


# Disadvantages of a linked list
-Inconvenient to read, must start reading from the first element in order to obtain the memory address of the subsequent element
-Low efficiency when jumping or reading a later element
-linked lists must have sequential access to elements


# Advantages of arrays
-can read any one element quickly
-the array can then access the element


# Disadvantages of arrays
-Must be stored in contiguous memory space, when adding elements without contiguous free memory space, the entire array must be migrated
-the array is inefficient when you insert or delete elements in the middle without considering the lookup time

Advantages and disadvantages of arrays and linked lists

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.