-*- mode: compilation; default-directory: "/local/allan/gottlieb/public_html/courses/ds/java-progs/" -*- Compilation started at Fri Apr 26 23:46:01 javac TimeSortingMethods.java && java TimeSortingMethods Sorting a random array of size 1000000 using Selection Sort * The array is not initially sorted. * After 999999 swaps and 434.27 seconds, the array is now sorted. Sorting a random array of size 1000000 using Bubble Sort * The array is not initially sorted. * After 249707560502 swaps and 2830.66 seconds, the array is now sorted. Sorting a random array of size 1000000 using Insertion Sort * The array is not initially sorted. * After 250159319169 swaps and 294.69 seconds, the array is now sorted. Sorting a random array of size 1000000 using Merge Sort * The array is not initially sorted. * After 0 swaps and 0.19 seconds, the array is now sorted. Sorting a random array of size 1000000 using Quick Sort * The array is not initially sorted. * After 4686890 swaps and 0.12 seconds, the array is now sorted. Sorting a random array of size 1000000 using Heap Sort * The array is not initially sorted. * After 999999 swaps and 0.22 seconds, the array is now sorted. Compilation finished at Sat Apr 27 00:45:22