程序包 | 说明 |
---|---|
org.apache.hadoop.util |
Common utilities.
|
限定符和类型 | 方法和说明 |
---|---|
void |
QuickSort.sort(IndexedSortable s,
int p,
int r)
Sort the given range of items using quick sort.
|
void |
IndexedSorter.sort(IndexedSortable s,
int l,
int r)
Sort the items accessed through the given IndexedSortable over the given
range of logical indices.
|
void |
HeapSort.sort(IndexedSortable s,
int p,
int r)
Sort the given range of items using heap sort.
|
void |
QuickSort.sort(IndexedSortable s,
int p,
int r,
Progressable rep)
Same as
IndexedSorter.sort(IndexedSortable,int,int) , but indicate progress
periodically. |
void |
IndexedSorter.sort(IndexedSortable s,
int l,
int r,
Progressable rep)
Same as
IndexedSorter.sort(IndexedSortable,int,int) , but indicate progress
periodically. |
void |
HeapSort.sort(IndexedSortable s,
int p,
int r,
Progressable rep)
Same as
IndexedSorter.sort(IndexedSortable,int,int) , but indicate progress
periodically. |
Copyright © 2009 The Apache Software Foundation