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

โปรแกรม C# เพื่อค้นหา Union of two or more Dictionaries


ประการแรก ตั้งค่าพจนานุกรมทั้งสอง -

Dictionary < string, int > dict1 = new Dictionary < string, int > ();
dict1.Add("water", 1);
dict1.Add("food", 2);
Dictionary < string, int > dict2 = new Dictionary < string, int > ();
dict2.Add("clothing", 3);
dict2.Add("shelter", 4);

ตอนนี้สร้าง HashSet และใช้วิธี UnionsWith() เพื่อค้นหายูเนียนระหว่างสองพจนานุกรมข้างต้น -

HashSet < string > hSet = new HashSet < string > (dict1.Keys);
hSet.UnionWith(dict2.Keys);

ต่อไปนี้เป็นรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;
using System.Collections.Generic;

public class Program {
   public static void Main() {
      Dictionary < string, int > dict1 = new Dictionary < string, int > ();
      dict1.Add("water", 1);
      dict1.Add("food", 2);

      Dictionary < string, int > dict2 = new Dictionary < string, int > ();
      dict2.Add("clothing", 3);
      dict2.Add("shelter", 4);

      HashSet < string > hSet = new HashSet < string > (dict1.Keys);
      hSet.UnionWith(dict2.Keys);

      Console.WriteLine("Union of Dictionary...");
      foreach(string val in hSet) {
         Console.WriteLine(val);
      }
   }
}

ผลลัพธ์

Union of Dictionary...
water
food
clothing
shelter