Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

배열에 중복이 포함되어 있는지 찾는 C# 프로그램

<시간/>

배열 설정 -

int[] arr = {
   89,
   12,
   56,
   89,
};

이제 새 사전을 만드십시오 -

var d = new Dictionary < int, int > ();

딕셔너리 메소드 ContainsKey()를 사용하여 배열에서 중복 요소를 찾습니다 -

foreach(var res in arr) {
   if (d.ContainsKey(res))
   d[res]++;
   else
   d[res] = 1;
}

다음은 전체 코드입니다 -

예시

using System;
using System.Collections.Generic;

namespace Demo {
   public class Program {
      public static void Main(string[] args) {
         int[] arr = {
            89,
            12,
            56,
            89,
         };
         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);
      }
   }
}

출력

89 occurred 2 times
12 occurred 1 times
56 occurred 1 times