----jGRASP exec: U:\Web\CS240_Fall_2007\Fall 07 CS 240 assignments\Assignment11_Original_Sort\Akhmetmov\testSorts --- BUBLE SORT --- The buble sort is a type of sorting in which the biggest elements in the list 'buble' to the end of the list. the UNSORTED array: 127 21 61 16 211 113 147 150 123 106 204 50 211 216 89 the SORTED array: 16 21 50 61 89 106 113 123 127 147 150 204 211 211 216 --- SELECTION SORT --- The selection sort is a type of sorting in which each element of a list goes to its place among the previously sorted elements/part of the list. the UNSORTED array: 145 81 131 155 206 245 44 104 8 152 167 18 56 4 96 the SORTED array: 4 8 18 44 56 81 96 104 131 145 152 155 167 206 245 --- INSERTION SORT --- The insertion sort is a type of sorting in which the first element of a list is swapped with the smallest element of the list, then the second element is swapped with the next smallest element of the list, and so on until the list is sorted. the UNSORTED array: 160 55 29 145 241 36 214 158 174 179 210 158 85 195 103 the SORTED array: 29 36 55 85 103 145 158 158 160 174 179 195 210 214 241 --- QUICKSORT --- The quicksort is not working. the UNSORTED array: 219 74 95 41 23 46 208 100 5 138 109 167 244 68 43 the SORTED array: 219 74 95 41 23 46 208 100 5 138 109 167 244 68 43 --- THE TEST PROGRAM HAS ENDED SUCCESSFULLY --- ----jGRASP: operation complete.