import java.util.Random; public class ST { public int[] fyShuffle(int size) { return fyShuffle(size, 0); } /** * Return aan array of size istem containing values 0..(size-1) * in random order. Uses the Fisher-Yates shuffle algorithm * @param size -- the size of the array * @return a shuffled array */ public int[] fyShuffle(int size, int seed) { int[] rtn = new int[size]; for (int i=0; itgt) break; } for (int k=i; k>j; k--) { rdm[k]=rdm[k-1]; } rdm[j]=tgt; } } /** * Insert into an array organized as a heap. * While this code is correct, it is also a very simplified version of a heap, * in that the heap contains only a key and the key must be an integer. * @param heap the array * @param size the number of data items in the array * @param dta the data item to be added */ private void heapInsert(int[] heap, int size, int dta) { // put in at end int loc = size; heap[loc] = dta; // bubble up int upp = (loc-1)/2; while (loc>0) { if (heap[loc] > heap[upp]) { // swap and climb int tmp = heap[upp]; heap[upp] = heap[loc]; heap[loc] = tmp; loc = upp; upp = (loc-1)/2; } else { break; } } } /** * Remove the top element of the heap. * While this code is correct, it is also a very simplified version of a heap, * in that the heap contains only a key and the key must be an integer. * @param heap an array whiose data is organized as a heap * @param heapSize the number of data items in the heap * @return the top most item in the heap. */ private int heapPoll(int[] heap, int heapSize) { if (heapSize==0) return -1; int rval=heap[0]; heap[0]=heap[heapSize-1]; heap[heapSize-1]=-1; downheap(heap, 0, heapSize); return rval; } private void downheap(int[] heap, int upp, int heapSize) { while (true) { int dwn; int dwn1 = upp*2+1; if (dwn1>=heapSize) break; int dwn2 = upp*2+2; if (dwn2>=heapSize) { dwn=dwn1; } else { if (heap[dwn1]>heap[dwn2]) dwn=dwn1; else dwn=dwn2; } if (heap[dwn]>heap[upp]) { int tmp = heap[dwn]; heap[dwn] = heap[upp]; heap[upp]=tmp; upp=dwn; } else { break; } } } /** * Build heap from top down * * @param rdm */ public void heapsort1(int[] rdm) { int[] newheap = new int[rdm.length]; for (int i=0; i=0) { int fullStart=i-1; int fullLen=i; for (int j=0; j