class IntSet2 { // Set class, sets stored as unordered partly-filled arrays // Has toString rather than print method private int[] array; private int count; final static int MAX=100; public IntSet2() { array = new int[MAX]; } public void delete(int n) { int i; for(i=0; i0) { str+=array[0]; for(i=1;i