Skip to content

Instantly share code, notes, and snippets.

@Kwisses
Created August 30, 2017 00:22
Show Gist options
  • Save Kwisses/905da371282654222f17e6057123541f to your computer and use it in GitHub Desktop.
Save Kwisses/905da371282654222f17e6057123541f to your computer and use it in GitHub Desktop.
QuickSortDemo - [Java]
package quicksort;
class QuickSortDemo {
public static void main(String args[]) {
int[] intArray = { 21, 38, 52, 19, 30, 53, 19, 55, 16, 21 };
QuickSort qs = new QuickSort(intArray);
qs.run(0, 9);
for(int x: qs.getArray()) {
System.out.print(x + " ");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment