Hard
What does the While loop do?
sort_insertion(Array listNumbers)
{
For i from 1 to size_of_listNumbers - 1
{
x <-- listNumbers[i];
j <-- i;
While j > 0 and listNumbers[j - 1] > x
{
listNumbers[j] <-- listNumbers[j - 1]
j <-- j-1;
}
listNumbers[j] <-- x;
}
}
Edit
4
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Algorithme