package sorts;

public class QuickSort_MINE extends GenericSortAlgorithm {
	public QuickSort_MINE() {
	}
    public QuickSort_MINE(int[] array, int left, int right) {
        super(array, left, right);
    }

	@Override
	public String getName() {
		return "QS Mine";
	}

    @Override
    protected void compute() {
    	// TODO #1 Implement an excellent version of quicksort.
    	// You may use the methods from GenericSortAlgorithm,
    	// but for the best performance, you may need to implement
    	// your own versions of those methods. (Since this subclasses
    	// GenericSortAlgorithm, you have access to all its methods, including
    	// the generic sorting algorithms.)
    }
   
}
