Differences between vector list deque

Source: Internet
Author: User

Vector is a continuous memory block, while deque is multiple consecutive memory blocks. list is the storage of all data elements separately. It can be that any two elements are not consecutive. The query performance of vector is the best, and it is also good to add data at the end, unless it applies for a memory segment again; suitable for efficient Random storage.
List is a linked list. Any element can be discontinuous, but it has two pointers pointing to the previous element and the next element. Therefore, it has the best performance for inserting and deleting elements, while the query performance is very poor. It is suitable for a large number of insert and delete operations without worrying about random access requirements.
Deque is between the two. It takes into account the advantages of arrays and linked lists. It is a combination of chunk linked lists and multiple arrays. Therefore, it has the query performance of list, and the insertion and deletion performance of vector. If you need to immediately access and care about data insertion and deletion at both ends, deque is the best choice.

Related Article

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.