C# 程式查詢兩個或更多個字典的並集\n


首先,設定這兩個字典 −

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

更新於: 22-Jun-2020

578 檢視

開啟你的 職業生涯

完成課程認證

開始學習
廣告
© . All rights reserved.