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

โปรแกรม C# เพื่อตรวจสอบว่าสองรายการมีองค์ประกอบร่วมอย่างน้อยหนึ่งรายการหรือไม่


ตั้งรายการแรก

int[] arr1 = {
   65,
   57,
   63,
   98
};

ตอนนี้ ตั้งค่ารายการที่สอง

int[] arr2 = {
   43,
   65,
   33,
   57
};

ให้เราดูโค้ดที่สมบูรณ์เพื่อตรวจสอบว่าสองรายการมีองค์ประกอบทั่วไปโดยใช้ตัวดำเนินการ ==และ <

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;

public class Program {
   public static void Main() {
      int[] arr1 = {
         65,
         57,
         63,
         98
      };

      int[] arr2 = {
         43,
         65,
         33,
         57
      };

      // HashSet One
      var h1 = new HashSet < int > (arr1);
      // HashSet Two
      var h2 = new HashSet < int > (arr2);

      // Displaying
      int[] val1 = h1.ToArray();
      Console.WriteLine("Set one...");
      foreach(int val in val1) {
         Console.WriteLine(val);
      }

      //Displaying
      int[] val2 = h2.ToArray();
      Console.WriteLine("Set two...");
      foreach(int val in val2) {
         Console.WriteLine(val);
      }

      int i = 0, j = 0;
      Console.WriteLine("Common elements:");
      while (i < val1.Length && j < val2.Length) {
         if (val1[i] == val2[j]) {
            Console.Write(val1[i] + " ");
            i++;
            j++;
         } else if (val1[i] < val2[j])
         i++;
         else
         j++;
      }
   }
}

ผลลัพธ์

Set one...
65
57
63
98
Set two...
43
65
33
57
Common elements:
65 57