What is the difference between list and array? Microsoft Interview 100 question 78th

Source: Internet
Author: User

Title Requirements:

  What is the difference between a linked list and an array?

Topic Analysis:

The array statically allocates memory, and the list dynamically allocates memory;

The array is predefined in length, and the linked list is not pre-managed;

Arrays are contiguous in memory, and linked lists may be contiguous;

Array elements in the stack area, linked list elements in the heap area;

The array uses subscript to locate, time complexity is O (1), the link list locates element time complexity O (n);

The time complexity of an array to insert or delete elements O (n), the time complexity of the list O (1);

Arrays are relatively more space-saving, and storing an element list also requires storing a next pointer;

Array sorting is relatively simple compared to linked lists.

What is the difference between list and array? Microsoft Interview 100 question 78th

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.