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

โปรแกรม C# เพื่อค้นหาว่าอาร์เรย์มีไฟล์ที่ซ้ำกันหรือไม่


ตั้งค่าอาร์เรย์ -

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

ตอนนี้สร้างพจนานุกรมใหม่ -

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

ใช้วิธีการพจนานุกรมประกอบด้วยKey() ค้นหาองค์ประกอบที่ซ้ำกันในอาร์เรย์ -

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