CombSort<T> class

Implementation of a Comb Sort for IList

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

Public Members

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

Remarks

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

See Also