首页 > 编程语言 > 详细

查看一个int数组里边的每个数字出现过几次

时间:2014-12-10 17:50:51      阅读:198      评论:0      收藏:0      [点我收藏+]
public void aa()
{
  int[] a = { 1, 2, 3, 4, 5, 4, 3, 2, 1 };
  Hashtable ht = new Hashtable();
  for (int i = 0; i < a.Length; i++)
  {
    if (ht.ContainsKey(a[i]))
    {
      ht.Add(a[i], (int)ht[i] + 1);
    }
    else
    {
      ht.Add(a[i], 1);
    }
  }
  string str = "";
  foreach (DictionaryEntry item in ht)
  {
    str += item.Key + ":" + item.Value + " ";
  }
}

  

查看一个int数组里边的每个数字出现过几次

原文:http://www.cnblogs.com/Zing/p/4155897.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!