统计数组中每个元素出现的次数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计数组中每个元素出现的次数相关的知识,希望对你有一定的参考价值。
Dictionary<string, int> counter = new Dictionary<string, int>(); foreach (string c in 数组) { if (counter.ContainsKey(c)) { counter[c]++; } else { counter.Add(c, 1); } if (counter[max] < counter[c]) max = c; } max为元素 counter[max]出现次数最多的元素出现的次数
以上是关于统计数组中每个元素出现的次数的主要内容,如果未能解决你的问题,请参考以下文章