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); 即可。