Class QuickSort

java.lang.Object
  extended by QuickSort

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
private static void quicksort(int[] a, int unten, int oben)
           
static void sort(int[] a)
           
 
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)

quicksort

private static void quicksort(int[] a,
                              int unten,
                              int oben)