public abstract class Sorter extends Object
Modifier | Constructor and Description |
---|---|
protected |
Sorter()
Sole constructor, used for inheritance.
|
Modifier and Type | Method and Description |
---|---|
protected abstract int |
compare(int i,
int j)
Compare entries found in slots
i and j . |
abstract void |
sort(int from,
int to)
Sort the slice which starts at
from (inclusive) and ends at
to (exclusive). |
protected abstract void |
swap(int i,
int j)
Swap values at slots
i and j . |
protected abstract int compare(int i, int j)
i
and j
.
The contract for the returned value is the same as
Comparator.compare(Object, Object)
.protected abstract void swap(int i, int j)
i
and j
.public abstract void sort(int from, int to)
from
(inclusive) and ends at
to
(exclusive).Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.