当前位置:   article > 正文

C# 字典Dictionary<TKey,TValue>排序整理_c#dictionary排序

c#dictionary排序

准备

1、Student 类

  1. public class Student
  2. {
  3. public string name {get; set;}
  4. public int age {get; set;}
  5. public int score {get; set;}
  6. }

2、dumpDictionary 方法

  1. void dumpDictionary(Dictionary<int, Student> stuDict, string desc)
  2. {
  3. Console.WriteLine(desc);
  4. foreach (KeyValuePair<int, Student> kvp in stuDict)
  5. {
  6. Console.WriteLine("{0} : {1} {2} {3}", kvp.Key, kvp.Value.name, kvp.Value.age, kvp.Value.score);
  7. }
  8. }

3、原始字典

  1. Dictionary<int, Student> stuDict = new Dictionary<int, Student> {
  2. [4] = new Student() {name = "张三", age = 20, score = 95},
  3. [5] = new Student() {name = "李四", age = 19, score = 99},
  4. [1] = new Student() {name = "王五", age = 21, score = 95},
  5. [3] = new Student() {name = "赵六", age = 20, score = 90},
  6. [6] = new Student() {name = "陈七", age = 22, score = 95},
  7. [2] = new Student() {name = "刘八", age = 21, score = 92}
  8. };
  9. dumpDictionary(stuDict, "-----原始字典-----");
  10. // -----原始字典-----
  11. // 4 : 张三 20 95
  12. // 5 : 李四 19 99
  13. // 1 : 王五 21 95
  14. // 3 : 赵六 20 90
  15. // 6 : 陈七 22 95
  16. // 2 : 刘八 21 92

按键(Key)排序

OrderBy/OrderByDescending

  1. // 升序
  2. stuDict = stuDict.OrderBy(kv => kv.Key).ToDictionary(kv => kv.Key, kv => kv.Value);
  3. dumpDictionary(stuDict, "-----按 Key 升序-----");
  4. // -----按 Key 升序-----
  5. // 1 : 王五 21 95
  6. // 2 : 刘八 21 92
  7. // 3 : 赵六 20 90
  8. // 4 : 张三 20 95
  9. // 5 : 李四 19 99
  10. // 6 : 陈七 22 95
  11. // 降序
  12. stuDict = stuDict.OrderByDescending(kv => kv.Key).ToDictionary(kv => kv.Key, kv => kv.Value);
  13. dumpDictionary(stuDict, "-----按 Key 降序-----");
  14. // -----按 Key 降序-----
  15. // 6 : 陈七 22 95
  16. // 5 : 李四 19 99
  17. // 4 : 张三 20 95
  18. // 3 : 赵六 20 90
  19. // 2 : 刘八 21 92
  20. // 1 : 王五 21 95

SortedDictionary

  1. SortedDictionary<int, Student> sortStuDict = new SortedDictionary<int, Student> (stuDict);
  2. Console.WriteLine("-----SortedDictionary-----");
  3. foreach (KeyValuePair<int, Student> kvp in sortStuDict)
  4. {
  5. Console.WriteLine("{0} : {1} {2} {3}", kvp.Key, kvp.Value.name, kvp.Value.age, kvp.Value.score);
  6. }
  7. // -----SortedDictionary-----
  8. // 1 : 王五 21 95
  9. // 2 : 刘八 21 92
  10. // 3 : 赵六 20 90
  11. // 4 : 张三 20 95
  12. // 5 : 李四 19 99
  13. // 6 : 陈七 22 95

ps

SortedDictionary 默认升序。

按值(Value)排序

OrderBy/OrderByDescending

单属性排序

  1. // 升序
  2. stuDict = stuDict.OrderBy(kv => kv.Value.age).ToDictionary(kv => kv.Key, kv => kv.Value);
  3. dumpDictionary(stuDict, "-----按 Value 的 age 属性升序-----");
  4. // -----按 Value 的 age 属性升序-----
  5. // 5 : 李四 19 99
  6. // 4 : 张三 20 95
  7. // 3 : 赵六 20 90
  8. // 1 : 王五 21 95
  9. // 2 : 刘八 21 92
  10. // 6 : 陈七 22 95
  11. // 降序
  12. stuDict = stuDict.OrderByDescending(kv => kv.Value.score).ToDictionary(kv => kv.Key, kv => kv.Value);
  13. dumpDictionary(stuDict, "-----按 Value 的 score 属性降序-----");
  14. // -----按 Value 的 score 属性降序-----
  15. // 5 : 李四 19 99
  16. // 4 : 张三 20 95
  17. // 1 : 王五 21 95
  18. // 6 : 陈七 22 95
  19. // 2 : 刘八 21 92
  20. // 3 : 赵六 20 90

嵌套排序

  1. // 按 Value 的 score 属性降序,score 相同则按 Value 的 age 升序
  2. stuDict = stuDict.OrderByDescending(kv => kv.Value.score).ThenBy(kv => kv.Value.age).ToDictionary(kv => kv.Key, kv => kv.Value);
  3. dumpDictionary(stuDict, "-----按 Value 的 score 属性降序,score 相同则按 Value 的 age 升序-----");
  4. // -----按 Value 的 score 属性降序,score 相同则按 Value 的 age 升序-----
  5. // 5 : 李四 19 99
  6. // 4 : 张三 20 95
  7. // 1 : 王五 21 95
  8. // 6 : 陈七 22 95
  9. // 2 : 刘八 21 92
  10. // 3 : 赵六 20 90
  11. // 按 Value 的 age 属性升序,age 相同则按 Key 降序
  12. stuDict = stuDict.OrderBy(kv => kv.Value.age).ThenByDescending(kv => kv.Key).ToDictionary(kv => kv.Key, kv => kv.Value);
  13. dumpDictionary(stuDict, "-----按 Value 的 age 属性升序,age 相同则按 Key 降序-----");
  14. // -----按 Value 的 age 属性升序,age 相同则按 Key 降序-----
  15. // 5 : 李四 19 99
  16. // 4 : 张三 20 95
  17. // 3 : 赵六 20 90
  18. // 2 : 刘八 21 92
  19. // 1 : 王五 21 95
  20. // 6 : 陈七 22 95

LINQ语句

  1. // 升序
  2. stuDict = (from pair in stuDict orderby pair.Value.age select pair).ToDictionary(kv => kv.Key, kv => kv.Value);
  3. dumpDictionary(stuDict, "-----按 Value 的 age 属性升序-----");
  4. // -----按 Value 的 age 属性升序-----
  5. // 5 : 李四 19 99
  6. // 4 : 张三 20 95
  7. // 3 : 赵六 20 90
  8. // 1 : 王五 21 95
  9. // 2 : 刘八 21 92
  10. // 6 : 陈七 22 95
  11. // 降序
  12. stuDict = (from pair in stuDict orderby pair.Value.score descending select pair).ToDictionary(kv => kv.Key, kv => kv.Value);
  13. dumpDictionary(stuDict, "-----按 Value 的 score 属性降序-----");
  14. // -----按 Value 的 score 属性降序-----
  15. // 5 : 李四 19 99
  16. // 4 : 张三 20 95
  17. // 1 : 王五 21 95
  18. // 6 : 陈七 22 95
  19. // 2 : 刘八 21 92
  20. // 3 : 赵六 20 90

参考:

Enumerable.ToDictionary 方法

SortedDictionary<TKey,TValue> 类

关于C#:根据键对字典进行排序

C#中Dictionary<TKey,TValue>排序方式

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

闽ICP备14008679号