All c# extension methods for linkedlist-t
-
Sort (Comparison<T> comparison)
stable, in-place sort (mergesort) of a LinkedList<T>. LinkedList<T> has O(1) insertion, great for large lists. this lets you sort it.C# System.Collections.Generic.LinkedList<T> Piers Haken