關於C#中字典Dictionary的順序及倒序詳解

來源:互聯網
上載者:User

C# .net 3.5 以上的版本引入 Linq 後,字典Dictionary排序變得十分簡單,用一句類似 sql 資料庫查詢語句即可搞定;不過,.net 2.0 排序要稍微麻煩一點,為便於使用,將總結 .net 3.5 和 2.0 的排序方法。

一、建立字典Dictionary 對象

  假如 Dictionary 中儲存的是一個網站頁面流量,key 是網頁名稱,值value對應的是網頁被訪問的次數,由於網頁的訪問次要不斷的統計,所以不能用 int 作為 key,只能用網頁名稱,建立 Dictionary 對象及添加資料代碼如下:

Dictionary<string, int> dic = new Dictionary<string, int>();  dic.Add("index.html", 50);  dic.Add("product.html", 13);  dic.Add("aboutus.html", 4);  dic.Add("online.aspx", 22);  dic.Add("news.aspx", 18);

 二、.net 3.5 以上版本 Dictionary排序(即 linq dictionary 排序)

  1、dictionary按值value排序

 private void DictonarySort(Dictionary<string, int> dic)  {    var dicSort = from objDic in dic orderby objDic.Value descending select objDic;    foreach(KeyValuePair<string, int> kvp in dicSort)      Response.Write(kvp.Key + ":" + kvp.Value + "<br />");  }

 排序結果:

  index.html:50
  online.aspx:22
  news.aspx:18
  product.html:13
  aboutus.html:4

  上述代碼是按降序(倒序)排列,如果想按升序(順序)排列,只需要把變數 dicSort 右邊的 descending 去掉即可。

  2、C# dictionary key 排序

  如果要按 Key 排序,只需要把變數 dicSort 右邊的 objDic.Value 改為 objDic.Key 即可。

三、.net 2.0 版本 Dictionary排序

  1、dictionary按值value排序(倒序)

private void DictionarySort(Dictionary<string, int> dic)  {    if (dic.Count > 0)    {      List<KeyValuePair<string, int>> lst = new List<KeyValuePair<string, int>>(dic);      lst.Sort(delegate(KeyValuePair<string, int> s1, KeyValuePair<string, int> s2)      {        return s2.Value.CompareTo(s1.Value);      });      dic.Clear();      foreach (KeyValuePair<string, int> kvp in lst)        Response.Write(kvp.Key + ":" + kvp.Value + "<br />");    }  }

排序結果:

  index.html:50
  online.aspx:22
  news.aspx:18
  product.html:13
  aboutus.html:4

  順序排列:只需要把變數 return s2.Value.CompareTo(s1.Value); 改為 return s1.Value.CompareTo(s2.Value); 即可。

2、C# dictionary key 排序(倒序、順序)

  如果要按 Key 排序,倒序只需把 return s2.Value.CompareTo(s1.Value); 改為 return s2.Key.CompareTo(s1.Key);;順序只需把return s2.Key.CompareTo(s1.Key); 改為 return s1.Key.CompareTo(s2.Key); 即可。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.