applications
Class QuickSort

java.lang.Object
  |
  +--applications.QuickSort

public class QuickSort
extends java.lang.Object


Constructor Summary
QuickSort()
           
 
Method Summary
static void main(java.lang.String[] args)
          test program
static void quickSort(java.lang.Comparable[] a)
          sort a[0 : a.length - 1] using the quick sort method
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QuickSort

public QuickSort()
Method Detail

quickSort

public static void quickSort(java.lang.Comparable[] a)
sort a[0 : a.length - 1] using the quick sort method

main

public static void main(java.lang.String[] args)
test program