C#程序用于从整数列表中输出重复项


要从整数列表中打印重复项,请使用 ContainsKey。

下面,我们首先设置整数。

int[] arr = {
   3,
   6,
   3,
   8,
   9,
   2,
   2
};

然后使用 Dictionary 集合来获取重复整数的计数。

让我们来看一下获取重复整数的代码。

示例

 实时演示

using System;
using System.Collections.Generic;

namespace Demo {
   public class Program {
      public static void Main(string[] args) {
         int[] arr = {
            3,
            6,
            3,
            8,
            9,
            2,
            2
         };
         var d = new Dictionary < int,int > ();
         foreach(var res in arr) {
            if (d.ContainsKey(res))
            d[res]++;
            else
            d[res] = 1;
         }
         foreach(var val in d)
         Console.WriteLine("{0} occurred {1} times", val.Key, val.Value);
      }
   }
}

输出

3 occurred 2 times
6 occurred 1 times
8 occurred 1 times
9 occurred 1 times
2 occurred 2 times

更新时间:22-Jun-2020

761 次浏览

开启你的职业生涯

完成课程即可获得认证

开始
广告