# 假如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);
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 />"); }
排序結果:
#
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
變數
dicSort 右邊的descending 去掉即可。 2、C# dictionary key 排序 如果要按 Key 排序,只需要把變數 dicSort 右邊的 objDic.Value 改為 objDic.Key 即可。 三、.net 2.0 版本Dictionary排序 1、dictionary依值value排序(倒數)rrreee
排序結果:
index.html: 50
online.aspx:22
product.html:13
aboutus.html:4 順序排列:只需將變數順序排列:只要變數.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); 即可。
以上是關於C#中字典Dictionary的順序及倒序詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!