溫馨提示×

c# set集合如何進(jìn)行并集操作

c#
小樊
81
2024-11-16 14:13:39
欄目: 編程語言

在C#中,要對HashSet進(jìn)行并集操作,可以使用UnionWith()方法。這是一個例子:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        HashSet<int> set1 = new HashSet<int> { 1, 2, 3, 4, 5 };
        HashSet<int> set2 = new HashSet<int> { 4, 5, 6, 7, 8 };

        // 對兩個HashSet進(jìn)行并集操作
        set1.UnionWith(set2);

        // 輸出并集后的HashSet
        Console.WriteLine("并集后的HashSet:");
        foreach (int item in set1)
        {
            Console.WriteLine(item);
        }
    }
}

在這個例子中,我們創(chuàng)建了兩個HashSet(set1set2),然后使用UnionWith()方法將它們合并。最后,我們遍歷并輸出合并后的HashSet。

0