当前位置:   article > 正文

C#字典Dictionary排序(顺序、倒序)_c# 怎么用字典统计数量排序

c# 怎么用字典统计数量排序

C# .net 3.5 以上的版本引入 Linq 后,字典Dictionary排序变得十分简单,用一句类似 sql 数据库查询语句即可搞定;不过,.net 2.0 排序要稍微麻烦一点,为便于使用,将总结 .net 3.5 和 2.0 的排序方法。

一、创建字典Dictionary 对象

  假如 Dictionary 中保存的是一个网站页面流量,key 是网页名称,值value对应的是网页被访问的次数,由于网页的访问次要不断的统计,所以不能用 int 作为 key,只能用网页名称,创建 Dictionary 对象及添加数据代码如下:

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

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

  1、dictionary按值value排序

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

 排序结果:

  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排序(倒序)

  1. private void DictionarySort(Dictionary<string, int> dic)
  2.   {
  3.     if (dic.Count > 0)
  4.     {
  5.       List<KeyValuePair<string, int>> lst = new List<KeyValuePair<string, int>>(dic);
  6.       lst.Sort(delegate(KeyValuePair<string, int> s1, KeyValuePair<string, int> s2)
  7.       {
  8.         return s2.Value.CompareTo(s1.Value);
  9.       });
  10.       dic.Clear();
  11.       foreach (KeyValuePair<string, int> kvp in lst)
  12.         Response.Write(kvp.Key + ":" + kvp.Value + "<br />");
  13.     }
  14.   }

排序结果:

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


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/84462
推荐阅读
相关标签
  

闽ICP备14008679号