9 package javolution.util.internal.table;
11 import java.util.Comparator;
30 int size =
table.size();
34 public void sort(
int first,
int last) {
37 sort(first, (pivIndex - 1));
38 sort((pivIndex + 1), last);
66 E temp =
table.get(up);
68 table.set(down, temp);