Skip to content

Instantly share code, notes, and snippets.

View geekpentesting's full-sized avatar

geekpentesting

View GitHub Profile
package quicksort;
import java.util.Arrays;
public class QuickSortDemo {
private static void swap( int[] arr, int p1, int p2 ) {
int temp = arr[p1];
arr[p1] = arr[p2];
arr[p2] = temp;
}