applications
Class BubbleSort

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

public class BubbleSort
extends java.lang.Object


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

Constructor Detail

BubbleSort

public BubbleSort()
Method Detail

bubbleSort

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

main

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