C# Class Orc.Sort.NSort.FastQuickSorter

A fast quick sort demonstration algorithm

Author James Gosling, Kevin A. Smith,

Source: http://www.cs.ubc.ca/spider/harrison/Java/FastQSortAlgorithm.java.html

Ported to C# by Jonathand de Halleux

Inheritance: SwapSorter
Afficher le fichier Open project: WildGums/Orc.Sort

Méthodes publiques

Méthode Description
FastQuickSorter ( ) : System
FastQuickSorter ( IComparer comparer, ISwap swapper ) : System
Sort ( IList list ) : void

Private Methods

Méthode Description
InsertionSort ( IList list, int lo0, int hi0 ) : void
QuickSort ( IList list, int l, int r ) : void

This is a generic version of C.A.R Hoare's Quick Sort algorithm. This will handle arrays that are already sorted, and arrays with duplicate keys.

If you think of a one dimensional array as going from the lowest index on the left to the highest index on the right then the parameters to this function are lowest index or left and highest index or right. The first time you call this function it will be with the parameters 0, a.length - 1.

Method Details

FastQuickSorter() public méthode

public FastQuickSorter ( ) : System
Résultat System

FastQuickSorter() public méthode

public FastQuickSorter ( IComparer comparer, ISwap swapper ) : System
comparer IComparer
swapper ISwap
Résultat System

Sort() public méthode

public Sort ( IList list ) : void
list IList
Résultat void