// Introduction to Algorithms
// Template for Quick.sort()
// <put your name, login name & student number here>

public class Quick implements Sorting {
    public static int cutoff = -1;
    public void cutoff (int n) { cutoff = n; }

    public void choice (int c) { }
	
    public int[] sort (int[] given_array) {


    }

}
