ShellSort<T> class

Implementation of a Shell Sort for IList

public class ShellSort<T> : IInPlaceSort<T>
    where T : IComparable
parameter description
T T must implement IComparable

Public Members

name description
ShellSort() The default constructor.
Sort(…) Performs an in-place sort of the collection.

Remarks

More information about Shell Sort can be found at Wikipedia or this blog post.

See Also