C# 클래스 Orc.Sort.NSort.QuickSorter

http://www.codeproject.com/csharp/csquicksort.asp
상속: SwapSorter
파일 보기 프로젝트 열기: WildGums/Orc.Sort

공개 메소드들

메소드 설명
QuickSorter ( ) : System.Collections
QuickSorter ( IComparer comparer, ISwap swapper ) : System.Collections
Sort ( IList array ) : void

Sorts the array.

Sort ( IList array, int lower, int upper ) : void

비공개 메소드들

메소드 설명
Pivot ( IList array, int lower, int upper ) : int

메소드 상세

QuickSorter() 공개 메소드

public QuickSorter ( ) : System.Collections
리턴 System.Collections

QuickSorter() 공개 메소드

public QuickSorter ( IComparer comparer, ISwap swapper ) : System.Collections
comparer IComparer
swapper ISwap
리턴 System.Collections

Sort() 공개 메소드

Sorts the array.
public Sort ( IList array ) : void
array IList The array to sort.
리턴 void

Sort() 공개 메소드

public Sort ( IList array, int lower, int upper ) : void
array IList
lower int
upper int
리턴 void