La respuesta aceptada por @DavidMills es bastante buena, pero creo que se puede mejorar. Por un lado, no es necesario definir la ComparisonComparer<T>
clase cuando el marco ya incluye un método estático Comparer<T>.Create(Comparison<T>)
. Este método se puede utilizar para crear un archivo IComparison
sobre la marcha.
Además, lanza IList<T>
a lo IList
que tiene el potencial de ser peligroso. En la mayoría de los casos que he visto, List<T>
qué implementos IList
se utilizan entre bastidores para implementar IList<T>
, pero esto no está garantizado y puede generar un código frágil.
Por último, el List<T>.Sort()
método sobrecargado tiene 4 firmas y solo 2 de ellas están implementadas.
List<T>.Sort()
List<T>.Sort(Comparison<T>)
List<T>.Sort(IComparer<T>)
List<T>.Sort(Int32, Int32, IComparer<T>)
La siguiente clase implementa las 4 List<T>.Sort()
firmas para la IList<T>
interfaz:
using System;
using System.Collections.Generic;
public static class IListExtensions
{
public static void Sort<T>(this IList<T> list)
{
if (list is List<T>)
{
((List<T>)list).Sort();
}
else
{
List<T> copy = new List<T>(list);
copy.Sort();
Copy(copy, 0, list, 0, list.Count);
}
}
public static void Sort<T>(this IList<T> list, Comparison<T> comparison)
{
if (list is List<T>)
{
((List<T>)list).Sort(comparison);
}
else
{
List<T> copy = new List<T>(list);
copy.Sort(comparison);
Copy(copy, 0, list, 0, list.Count);
}
}
public static void Sort<T>(this IList<T> list, IComparer<T> comparer)
{
if (list is List<T>)
{
((List<T>)list).Sort(comparer);
}
else
{
List<T> copy = new List<T>(list);
copy.Sort(comparer);
Copy(copy, 0, list, 0, list.Count);
}
}
public static void Sort<T>(this IList<T> list, int index, int count,
IComparer<T> comparer)
{
if (list is List<T>)
{
((List<T>)list).Sort(index, count, comparer);
}
else
{
List<T> range = new List<T>(count);
for (int i = 0; i < count; i++)
{
range.Add(list[index + i]);
}
range.Sort(comparer);
Copy(range, 0, list, index, count);
}
}
private static void Copy<T>(IList<T> sourceList, int sourceIndex,
IList<T> destinationList, int destinationIndex, int count)
{
for (int i = 0; i < count; i++)
{
destinationList[destinationIndex + i] = sourceList[sourceIndex + i];
}
}
}
Uso:
class Foo
{
public int Bar;
public Foo(int bar) { this.Bar = bar; }
}
void TestSort()
{
IList<int> ints = new List<int>() { 1, 4, 5, 3, 2 };
IList<Foo> foos = new List<Foo>()
{
new Foo(1),
new Foo(4),
new Foo(5),
new Foo(3),
new Foo(2),
};
ints.Sort();
foos.Sort((x, y) => Comparer<int>.Default.Compare(x.Bar, y.Bar));
}
La idea aquí es aprovechar la funcionalidad del subyacente List<T>
para manejar la clasificación siempre que sea posible. Nuevamente, la mayoría de las IList<T>
implementaciones que he visto usan esto. En el caso de que la colección subyacente sea de un tipo diferente, recurra a la creación de una nueva instancia de List<T>
con elementos de la lista de entrada, úsela para ordenar y luego copie los resultados a la lista de entrada. Esto funcionará incluso si la lista de entrada no implementa la IList
interfaz.