在C#中,有多种方法可以实现去重。选择合适的去重函数取决于你的需求和数据类型。以下是一些建议:
HashSet
using System.Collections.Generic;
List<int> numbers = new List<int> { 1, 2, 2, 3, 4, 4, 5 };
HashSet<int> uniqueNumbers = new HashSet<int>(numbers);
List<int> deduplicatedNumbers = uniqueNumbers.ToList();
Distinct<T>()
方法是LINQ扩展方法,可用于对集合中的元素进行去重。它适用于去重可比较的类型,返回一个新的查询结果。使用Distinct<T>()
方法如下:
using System.Linq;
List<int> numbers = new List<int> { 1, 2, 2, 3, 4, 4, 5 };
List<int> deduplicatedNumbers = numbers.Distinct().ToList();
Distinct()
,也可以使用Set<T>
:using System.Collections.Generic;
using System.Linq;
string[] words = { "apple", "banana", "apple", "orange", "banana" };
string[] deduplicatedWords = words.Distinct().ToArray();
// 或者
List<string> wordsList = new List<string> { "apple", "banana", "apple", "orange", "banana" };
HashSet<string> uniqueWords = new HashSet<string>(wordsList);
string[] deduplicatedWords = uniqueWords.ToArray();
IEquatable<T>
接口并重写Equals()
和GetHashCode()
方法,然后使用HashSet<T>
或Distinct<T>()
方法进行去重。总之,在选择合适的去重函数时,请考虑你的数据类型、性能和易用性。对于简单类型,可以使用HashSetIEquatable<T>
接口并重写Equals()
和GetHashCode()
方法。