applications
Class SelectionSort

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

public class SelectionSort
extends java.lang.Object


Constructor Summary
SelectionSort()
           
 
Method Summary
static void main(java.lang.String[] args)
          test program
static void selectionSort(java.lang.Comparable[] a)
          sort the array a using the selection sort method
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SelectionSort

public SelectionSort()
Method Detail

selectionSort

public static void selectionSort(java.lang.Comparable[] a)
sort the array a using the selection sort method

main

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