Class QuickSort

java.lang.Object
  extended byQuickSort

public class QuickSort
extends java.lang.Object

rekursives Sortieren mit Quicksort Idee: partitioniere die Folge in eine elementweise kleinere und eine elementweise groessere Haelfte und sortiere diese nach demselben Verfahren


Constructor Summary
QuickSort()
           
 
Method Summary
static void sort(int[] a, int unten, int oben)
           
 
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

sort

public static void sort(int[] a,
                        int unten,
                        int oben)