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

โปรแกรม C# เพื่อค้นหาองค์ประกอบที่พบบ่อยที่สุด


สมมติว่าสตริงของเราคือ −

String s = "HeathLedger!";

ตอนนี้สร้างอาร์เรย์ใหม่

int []cal = new int[maxCHARS];

สร้างวิธีการใหม่และส่งผ่านทั้งสตริงและอาร์เรย์ใหม่ในนั้น ค้นหาการเกิดขึ้นสูงสุดของอักขระ

static void calculate(String s, int[] cal) {
   for (int i = 0; i < s.Length; i++)
   cal[s[i]]++;
}

ให้เราดูรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;
class Demo {
   static int maxCHARS = 256;
   static void calculate(String s, int[] cal) {
      for (int i = 0; i < s.Length; i++)
      cal[s[i]]++;
   }

   public static void Main() {
      String s = "thisisit!";
      int []cal = new int[maxCHARS];
      calculate(s, cal);
      for (int i = 0; i < maxCHARS; i++)
      if(cal[i] > 1) {
         Console.WriteLine("Character "+(char)i);
         Console.WriteLine("Occurrence = " + cal[i] + " times");
      }
   }
}

ผลลัพธ์

Character i
Occurrence = 3 times
Character s
Occurrence = 2 times
Character t
Occurrence = 2 times