Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะตรวจสอบว่าอาร์เรย์มีหมายเลขซ้ำโดยใช้ C # ได้อย่างไร


ขั้นแรก ตั้งค่าอาร์เรย์ −

int[] arr = {
   87,
   55,
   23,
   87,
   45,
   23,
   98
};

ตอนนี้ประกาศพจนานุกรมและวนรอบอาร์เรย์และรับการนับองค์ประกอบทั้งหมด ค่าที่คุณได้รับจากพจนานุกรมจะแสดงการเกิดขึ้นของตัวเลข -

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

ให้เราดูตัวอย่างที่สมบูรณ์ −

ตัวอย่าง

using System;
using System.Collections.Generic;
namespace Demo {
   public class Program {
      public static void Main(string[] args) {
     
         int[] arr = {
            87,
            55,
            23,
            87,
            45,
            23,
            98
         };
         var dict = new Dictionary < int, int > ();
         foreach(var count in arr) {
            if (dict.ContainsKey(count))
            dict[count]++;
            else
            dict[count] = 1;
         }
         foreach(var val in dict)
         Console.WriteLine("{0} occurred {1} times", val.Key, val.Value);
      }
   }
}