Definition at line 40 of file Sort.java.
Static Public Member Functions | |
static synchronized void | shellsort (Vector vec, Orderable op) |
Sort a Vector of Object references according to the ordering specified by the Orderable object instance method compareTo(). | |
static synchronized void | shellsort (Array array, Orderable op) |
Sort a CyberArray of Object references according to the ordering specified by the Orderable object instance method compareTo(). | |
static void | shellsort (Object[] data, Orderable op) |
|
Sort a CyberArray of Object references according to the ordering specified by the Orderable object instance method compareTo(). use shellSort
Definition at line 91 of file Sort.java. References org.openmobileis.common.util.collection.Array.getArrayElements(), org.openmobileis.common.util.collection.Array.setArrayElements(), org.openmobileis.common.util.collection.Sort.shellsort(), and org.openmobileis.common.util.collection.Array.size. |
|
Sort a Vector of Object references according to the ordering specified by the Orderable object instance method compareTo().
Definition at line 56 of file Sort.java. Referenced by org.openmobileis.common.util.collection.Sort.shellsort(). |