c# set集合如何去重元素

c#
小樊
81
2024-11-16 15:31:45

在C#中,可以使用HashSet類(lèi)來(lái)存儲(chǔ)不重復(fù)的元素。HashSet是基于哈希表實(shí)現(xiàn)的,因此它會(huì)自動(dòng)去除重復(fù)元素。以下是如何使用HashSet來(lái)去重元素的示例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 創(chuàng)建一個(gè)包含重復(fù)元素的List
        List<int> listWithDuplicates = new List<int> { 1, 2, 3, 4, 4, 5, 6, 6, 7, 8, 9, 9 };

        // 使用HashSet去重
        HashSet<int> set = new HashSet<int>(listWithDuplicates);

        // 將HashSet轉(zhuǎn)換為L(zhǎng)ist并輸出結(jié)果
        List<int> uniqueList = new List<int>(set);
        Console.WriteLine("Unique elements:");
        foreach (int item in uniqueList)
        {
            Console.WriteLine(item);
        }
    }
}

在這個(gè)示例中,我們首先創(chuàng)建了一個(gè)包含重復(fù)元素的List。然后,我們使用HashSet來(lái)存儲(chǔ)這些元素,HashSet會(huì)自動(dòng)去除重復(fù)元素。最后,我們將HashSet轉(zhuǎn)換為L(zhǎng)ist并輸出結(jié)果。

0