如何实现 IComparable<T>?
How do I implement IComparable<T>?
我已经创建了自己的通用 Java 数据结构库,现在我正在用 C# 创建它,但我一直在尝试实现 CompareTo 方法来对单链表进行排序。
这是我的代码:
class SortedSinglyLinkedList<T> : IComparable // my class
// [irrelevant stuff...]
// Sorts the list, from the least to the greatest element
public void sort()
{
for (int i = 0; i < count; i++)
{
for (int j = 0; j < count; j++)
{
if (get(i).CompareTo(get(j)) < 0) // ERROR -> 'T' does not contain a definition for 'CompareTo' and no extension method 'CompareTo' accepting a first argument of type'T' could be found (are you missing a using directive or an assembly reference?)
{
move(i, j); // this method simply moves a node from i to j
}
}
}
}
// Compares 2 elements
int IComparable<T>.CompareTo(T other)
{
// what should I put here to make it work?
}
实现此目的的一种方法是要求列表的元素具有可比性,即让它们实现 IComparable
接口。您可以使用 T
上的泛型类型约束来表达这一点,如:
public class SortedSinglyLinkedList<T> : where T : IComparable
一种更通用的方法,也允许您的列表包含未实现此 IComparable
接口的元素,是遵循许多 c# BCL 通用集合中使用的策略 类(例如 SortedDictionary
or SortedList
): use an IComparer
执行比较的实例。
public class SortedSinglyLinkedList<T>
{
private readonly IComparer<T> _comparer;
// ...
public SortedSinglyLinkedList()
{
_comparer = Comparer<T>.Default; // use the default.
// ...
}
public SortedSinglyLinkedList(IComparer<T> comparer)
{
_comparer = comparer ?? Comparer<T>.Default;
// ...
}
}
并且在您的 Sort
方法中,使用此比较器实例执行比较:
_comparer.Compare(get(i), get(j));
我已经创建了自己的通用 Java 数据结构库,现在我正在用 C# 创建它,但我一直在尝试实现 CompareTo 方法来对单链表进行排序。 这是我的代码:
class SortedSinglyLinkedList<T> : IComparable // my class
// [irrelevant stuff...]
// Sorts the list, from the least to the greatest element
public void sort()
{
for (int i = 0; i < count; i++)
{
for (int j = 0; j < count; j++)
{
if (get(i).CompareTo(get(j)) < 0) // ERROR -> 'T' does not contain a definition for 'CompareTo' and no extension method 'CompareTo' accepting a first argument of type'T' could be found (are you missing a using directive or an assembly reference?)
{
move(i, j); // this method simply moves a node from i to j
}
}
}
}
// Compares 2 elements
int IComparable<T>.CompareTo(T other)
{
// what should I put here to make it work?
}
实现此目的的一种方法是要求列表的元素具有可比性,即让它们实现 IComparable
接口。您可以使用 T
上的泛型类型约束来表达这一点,如:
public class SortedSinglyLinkedList<T> : where T : IComparable
一种更通用的方法,也允许您的列表包含未实现此 IComparable
接口的元素,是遵循许多 c# BCL 通用集合中使用的策略 类(例如 SortedDictionary
or SortedList
): use an IComparer
执行比较的实例。
public class SortedSinglyLinkedList<T>
{
private readonly IComparer<T> _comparer;
// ...
public SortedSinglyLinkedList()
{
_comparer = Comparer<T>.Default; // use the default.
// ...
}
public SortedSinglyLinkedList(IComparer<T> comparer)
{
_comparer = comparer ?? Comparer<T>.Default;
// ...
}
}
并且在您的 Sort
方法中,使用此比较器实例执行比较:
_comparer.Compare(get(i), get(j));