C#的Dictionary值排序和SortedDictionary鍵排序

來源:互聯網
上載者:User

對一個Dictionary<TKey, TValue>進行鍵排序可以直接用SortedDictionary, SortedDictionary<TKey, TValue> 泛型類是檢索運算複雜度為 O(log n) 的二叉搜尋樹,其中 n 是字典中的元素數。 就這一點而言,它與 SortedList<TKey, TValue> 泛型類相似。 這兩個類具有相似的物件模型,並且都具有 O(log n) 的檢索運算複雜度。這兩個類的區別在於記憶體的使用以及插入和移除元素的速度:SortedList<TKey, TValue> 使用的記憶體比 SortedDictionary<TKey, TValue> 少,SortedDictionary<TKey, TValue> 可對未排序的資料執行更快的插入和移除操作:它的時間複雜度為 O(log n),而 SortedList<TKey, TValue> 為 O(n),如果使用排序資料一次性填充列表,則 SortedList<TKey, TValue> 比 SortedDictionary<TKey, TValue> 快。每個鍵/值對都可以作為 KeyValuePair<TKey, TValue> 結構進行檢索,或作為 DictionaryEntry 通過非泛型 IDictionary 介面進行檢索。只要鍵用作 SortedDictionary<TKey, TValue> 中的鍵,它們就必須是不可變的。 SortedDictionary<TKey, TValue> 中的每個鍵必須是唯一的。 鍵不能為 null,但是如果實值型別 TValue 為參考型別,該值則可以為空白。SortedDictionary<TKey, TValue> 需要比較子實現來執行鍵比較。 可以使用一個接受 comparer 參數的建構函式來指定 IComparer<T> 泛型介面的實現;如果不指定實現,則使用預設的泛型比較子 Comparer<T>.Default。 如果類型 TKey 實現 System.IComparable<T> 泛型介面,則預設比較子使用該實現。

 

對一個Dictionary<TKey, TValue>進行值排序可以用LINQ:

Dictionary<string, string> MyDictionary = new Dictionary<string, string>();

MyDictionary = (from entry in MyDictionary 
                                     orderby entry.Value ascending
                                     select entry).ToDictionary(pair => pair.Key, pair => pair.Value);

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.