Question: Which simple sort is the following sorting code from? public void mysterySort ( ) { int in, out ; for(out = 1 ; out 0

Which simple sort is the following sorting code from? public void mysterySort ( ) { int in, out ; for(out = 1 ; out 0 & & a [in - 1] > = temp) { a [in] = a [in - 1]; --in; } a [in] = temp; } // end for } // end mysterySort ( ) // // out is dividing line // remove marked item // start shifts at out // until one is smaller, // shift item to right // go left one position // insert marked item Bubble Sort Selection Sort Insertion Sort Quick Sort
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
