亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何處理C# Vector中的重復元素

c#
小樊
82
2024-09-04 16:24:43
欄目: 編程語言

在C#中,Vector<T> 類型通常用于表示多維向量,而不是存儲一系列元素的集合

以下是使用HashSet刪除重復元素的示例:

using System;
using System.Collections.Generic;
using System.Numerics;

class Program
{
    static void Main()
    {
        // 創建一個包含重復元素的Vector<int>
        Vector<int> vectorWithDuplicates = new Vector<int>(new int[] { 1, 2, 3, 4, 4, 5, 6, 7, 7, 8 });

        // 將Vector<int>轉換為List<int>
        List<int> listWithDuplicates = new List<int>(vectorWithDuplicates);

        // 使用HashSet刪除重復元素
        HashSet<int> hashSet = new HashSet<int>(listWithDuplicates);

        // 將HashSet轉換回List<int>
        List<int> uniqueList = new List<int>(hashSet);

        // 輸出去重后的結果
        Console.WriteLine("Unique elements:");
        foreach (int element in uniqueList)
        {
            Console.WriteLine(element);
        }
    }
}

這段代碼首先創建了一個包含重復元素的 Vector<int>。然后,它將 Vector<int> 轉換為 List<int>,接著使用 HashSet<int> 刪除重復元素。最后,將 HashSet<int> 轉換回 List<int> 并輸出去重后的結果。

請注意,此示例僅適用于整數類型的向量。對于其他類型,只需相應地更改 Vector<T>List<T>HashSet<T> 中的泛型參數即可。

0
息烽县| 大名县| 平乡县| 辽宁省| 大同市| 甘泉县| 嘉兴市| 瓮安县| 全椒县| 璧山县| 望都县| 长兴县| 罗定市| 弥渡县| 吉隆县| 娱乐| 曲阳县| 宁都县| 新邵县| 东安县| 古蔺县| 高密市| 车致| 崇文区| 太保市| 柞水县| 凌云县| 连江县| 保定市| 韶关市| 云霄县| 堆龙德庆县| 宝应县| 仲巴县| 平定县| 都江堰市| 庐江县| 綦江县| 阿图什市| 三明市| 新田县|