码迷,mamicode.com
首页 > 编程语言 > 详细

统计数组中每个元素出现的次数

时间:2016-01-27 17:18:15      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

   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]出现次数最多的元素出现的次数

 

统计数组中每个元素出现的次数

标签:

原文地址:http://www.cnblogs.com/shenwuyu/p/5163787.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!