What algorithm does the following pseudocode perform?
Declare Integer index
Declare Integer scan
Declare Integer unsortedValue
For index = 1 To arraySize - 1
Set unsortedValue = array[index]
Set scan = index
While scan > 0 AND array[scan-1] < array[scan]
Call swap(array[scan-1], array[scan])
Set scan = scan - 1
End While
Set array[scan] = unsortedValue
End For
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.