/** Driver.java -- Let's test quicksort. */ import java.io.*; public class Driver { public static void main(String [] args) throws IOException { Array a = new Array(); Array b = new Array(a); Array c = new Array(a); a.mergeSortStarter(); System.out.println(); b.quickSortStarter(); System.out.println(); c.stoogeSortStarter(); } }