使用HashSet<>去除重複元素的集合

Insus.NET發表於2017-12-28

比如,某一個陣列中,有重複的元素,我們想去除重複的,保留一個。
HashSet<T>含不重複項的無序列表,從MSDN網上了解到,這集合基於雜湊值,插入元素的操作非常快。

你可以寫一個方法:

 

 class Bn
    {
        public string[] Data { get; set; }
        public string[] RemoveDuplicatesElement()
        {
            HashSet<string> hashSet = new HashSet<string>(Data);
            string[] result = new string[hashSet.Count];
            hashSet.CopyTo(result);
            return result;
        }
    }
Source Code

 

接下來,在控制檯測試上面的方法:

 

 class Program
    {
        static void Main(string[] args)
        {
            Bn obj = new Bn();
            obj.Data =  new[] { "F", "D", "F", "E", "Q","Q", "D" };
            var result = obj.RemoveDuplicatesElement();

            for (int i = 0; i < result.Length; i++)
            {
                Console.WriteLine(result[i]);
            }

            Console.ReadLine();
        }
    }
Source Code

 

相關文章