SortedDictionary and SortedList, sorteddictionary

Source: Internet
Author: User

SortedDictionary and SortedList, sorteddictionary

The above two interfaces are similar to dictionaries, and common methods of SortedList such as Find, FindIndex, and RemoveAll are not provided.

 

There is a big difference between the two data structures. SortedList finds extremely fast data, but it adds new elements, and the deletion speed is relatively low. SortedDictionary searches, adds, and deletes all elements on average.

 

Boyou test results:

 

Test it in Unity3D.

Public class Test: MonoBehaviour {void Start () {var sortedDict = new SortedDictionary <string, int> (); sortedDict. add ("a01", 10); sortedDict. add ("a10", 2); sortedDict. add ("a03", 5); sortedDict. add ("a02", 1); print (sortedDict ["a01"]); foreach (var item in sortedDict) {Debug. log ("SortedDictionary:" + item);} var sortedList = new SortedList <string, int> (); sortedList. add ("a01", 10); sortedList. add ("a10", 2); sortedList. add ("a03", 5); sortedList. add ("a02", 1); print (sortedList ["a01"]); foreach (var item in sortedList) {Debug. log ("SortedList:" + item) ;}} View Code

 

Call result:

 

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.