The collection classes for C + + and. NET correspond

Source: Internet
Author: User

?

Here's what I've found (ignoring the old non-generic collections):

  • Array ?-C Array, though the. NET array? can? Have a Non-zero starting index.
  • list<t> ?-? std::vector<t>
  • Dictionary<tkey, tvalue> ?-? Unordered_map<key, data>
  • hashset<t> ?-? unordered_set<key>
  • Sorteddictionary<tkey, tvalue> ?-? Std::map<key, data>
  • Sortedlist<tkey, tvalue> ?-equivalent to a? std::vector<t> ? But keeping it ordered by using binary search + insert when adding elements.
  • sortedset<t> ?-? std::set<key>
  • queue<t> ?-? std::queue<t>
  • stack<t> ?-? std::stack<t>
  • LINKEDLIST<T> Span style= "font-family:arial; Font-size:11pt ">?-? STD::LIST<T>

notably missing from the. NET collections is the "multi-" variants, e.g.,? Multiset ,? Multimap , etc. However, they has added a number of very useful threadsafe collections:the "concurrent-" variants, e.g.,? concurrentdictionary ,? Concurrentqueue , etc.

The collection classes for C + + and. NET correspond

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.