কম্পিউটার

দুই বা ততোধিক অভিধানের ইউনিয়ন খুঁজে পেতে C# প্রোগ্রাম


প্রথমত, উভয় অভিধান −

সেট করুন
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);

এখন, হ্যাশসেট তৈরি করুন এবং উপরের দুটি অভিধানের মধ্যে মিল খুঁজে পেতে 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

  1. দুটি অভিধানকে একের মধ্যে সংযুক্ত করার জন্য পাইথন প্রোগ্রাম

  2. পাইথনে দুটি প্রদত্ত লিঙ্কযুক্ত তালিকার মিলন খুঁজে বের করার প্রোগ্রাম

  3. পাইথন প্রোগ্রাম দুটি অভিধানকে একত্রিত করতে

  4. দুই বা ততোধিক তালিকার ইউনিয়ন খুঁজে পেতে পাইথন প্রোগ্রাম?