See More

package algorithm.sorting; import java.util.Random; /** * The type Quick sort. */ public class QuickSort { /** * The Obj. */ static Helper obj = new Helper(); /** * Sort. * * @param arr the arr * @param left the left * @param right the right */ public static void sort(int[] arr , int left , int right){ if(left