কম্পিউটার

C# প্রোগ্রাম দুটি কী এর অভিধান একত্রিত করতে


প্রথমত, অভিধানগুলিকে একত্রিত করার জন্য সেট করুন −

Dictionary <string, int> dict1 = new Dictionary <string, int> ();
dict1.Add("one", 1);
dict1.Add("Two", 2);
Dictionary <string, int> dict2 = new Dictionary <string, int> ();
dict2.Add("Three", 3);
dict2.Add("Four", 4);

এখন, তাদের একত্রিত করতে HashSet ব্যবহার করুন। একই উদ্দেশ্যে ব্যবহৃত পদ্ধতিটি হল UnionWith() −

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("one", 1);
      dict1.Add("Two", 2);
      Dictionary <string, int> dict2 = new Dictionary <string, int> ();
      dict2.Add("Three", 3);
      dict2.Add("Four", 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...
one
Two
Three
Four

  1. সি প্রোগ্রাম দুটি স্ট্রিং অদলবদল

  2. C++ এ দুটি বাইনারি স্ট্রিং যোগ করার জন্য প্রোগ্রাম

  3. পাইথন - সাধারণ কীগুলির জন্য মান যুক্ত করে দুটি অভিধান একত্রিত করুন

  4. পাইথন প্রোগ্রাম একটি স্ট্রিং থেকে একটি অভিধান তৈরি করতে