Question: Implement a bogus sorting algorithm called bogo sort that uses your shuffling algorithm from the previous exercise to sort an array of numbers. The bogo
Implement a “bogus” sorting algorithm called bogo sort that uses your shuffling algorithm from the previous exercise to sort an array of numbers. The bogo sort algorithm is the following:

Obviously, this is not a very efficient sorting algorithm, but it eventually does shuffle the array into order if you let it run long enough. Try running it on a very small array, such as 8 or 10 elements, to examine its runtime. What is your best guess about the complexity class (big- Oh) of this silly algorithm?
while (array is not sorted) { shuffle array.
Step by Step Solution
3.48 Rating (168 Votes )
There are 3 Steps involved in it
Places the elements of a into sorted order public static void bo... View full answer
Get step-by-step solutions from verified subject matter experts
