如何对嵌套字典进行排序.net C#?

时间:2015-10-18 21:25:48

标签: c# .net sorting dictionary nested

using System;
using System.Collections.Generic;
using System.Linq;

class Dictionary
{
    static void Main()
    {
        Dictionary<string,Dictionary<string,float>> dict = new Dictionary<string, Dictionary<string, float>>();
        String input = Console.ReadLine();
        String[] data = input.Split();
        string name = "";
        float result = 0;

        while (data[0] != "end")
        {
            if (data.Length == 1)
            {
                name = data[0];
                dict.Add(name, new Dictionary<string, float>());
            }
            else if (data.Length > 1)
            {
                result = float.Parse(data[1]);
                dict[name].Add(data[0], result);
            }

            data = Console.ReadLine().Split(); // input 
        }

        // var dic2 = from x in dict
        // orderby x.Key
        // select x; 

        foreach (var item in dict)
        {
            Console.WriteLine("Country: {0}", item.Key);
            string temp = item.Key;

            foreach (var element in dict[temp])
            {
                Console.WriteLine("City: {0}, population: {1}", element.Key, element.Value);
            }
        }
    }
}

我有一个字典键 - >国家,嵌套 - &gt;字典键 - &gt;城市,价值 - >人口我想要的人         在内部“嵌套”字典中排序国家和人口。一世         花了几个小时寻找正确的答案但却找不到         解决我的问题。我能够预先获取信息,但无法找到对其进行排序的方法。任何帮助赞赏。         PS:我现在只是在学习词典。         感谢。

2 个答案:

答案 0 :(得分:1)

您可以使用SortedDictionary作为内部词典。

答案 1 :(得分:1)

我假设你有类似的东西(编号)

USA
- LA : 5000000
- New York : 10000000
- Boston : 3000000
Australia
- Sydney : 4000000
- Canberra : 500000
Canada
- Ontario : 1000000
- Toronto : 2000000

你希望它是

Australia
- Canberra : 500000
- Sydney : 4000000
Canada
- Ontario : 1000000
- Toronto : 2000000
USA
- Boston : 3000000
- LA : 5000000
- New York : 10000000

首先,您无法对字典进行排序。但你确实有一些选择。 You can use a SortedDictionary where you specify the comparer。 或者,您可以将元素输出到KeyValuePairs列表并对其进行排序。