如何从c#中获取List中元素的频率

时间:2013-07-02 19:24:59

标签: c# list frequency

我试图获取存储在列表中的元素的频率。

我将以下ID存储在我的列表中

ID
1
2
1
3
3
4
4
4

我想要以下输出:

ID| Count
1 | 2
2 | 1
3 | 2
4 | 3

在java中,您可以采用以下方式。

for (String temp : hashset) 
    {
    System.out.println(temp + ": " + Collections.frequency(list, temp));
    }

来源:http://www.mkyong.com/java/how-to-count-duplicated-items-in-java-list/

如何获取c#中列表的频率计数?

感谢。

3 个答案:

答案 0 :(得分:11)

您可以使用LINQ

var frequency = myList.GroupBy(x => x).ToDictionary(x => x.Key, x => x.Count());

这将创建一个Dictionary对象,其中键为ID,值为ID出现的次数。

答案 1 :(得分:7)

using System.Linq;

List<int> ids = //

foreach(var grp in ids.GroupBy(i => i))
{
    Console.WriteLine("{0} : {1}", grp.Key, grp.Count());
}

答案 2 :(得分:2)

int[] randomNumbers =  { 2, 3, 4, 5, 5, 2, 8, 9, 3, 7 };
Dictionary<int, int> dictionary = new Dictionary<int, int>();
Array.Sort(randomNumbers);

foreach (int randomNumber in randomNumbers) {
    if (!dictionary.ContainsKey(randomNumber))
        dictionary.Add(randomNumber, 1);
    else
        dictionary[randomNumber]++;
    }

    StringBuilder sb = new StringBuilder();
    var sortedList = from pair in dictionary
                         orderby pair.Value descending
                         select pair;

    foreach (var x in sortedList) {
        for (int i = 0; i < x.Value; i++) {
                sb.Append(x.Key+" ");
        }
    }

    Console.WriteLine(sb);
}