c#

c# set集合如何去重元素

小樊
81
2024-11-16 15:31:45
栏目: 编程语言

在C#中,可以使用HashSet类来存储不重复的元素。HashSet是基于哈希表实现的,因此它会自动去除重复元素。以下是如何使用HashSet来去重元素的示例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 创建一个包含重复元素的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转换为List并输出结果
        List<int> uniqueList = new List<int>(set);
        Console.WriteLine("Unique elements:");
        foreach (int item in uniqueList)
        {
            Console.WriteLine(item);
        }
    }
}

在这个示例中,我们首先创建了一个包含重复元素的List。然后,我们使用HashSet来存储这些元素,HashSet会自动去除重复元素。最后,我们将HashSet转换为List并输出结果。

0
看了该问题的人还看了