Question from the Algorithmics - Fundamentals test

Archived

What does the While loop do?

         sort_insertion(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;
                }
    }
Author: KahinaStatus: Archived(New question!)Question passed 1 times
0
Community EvaluationsNo one has reviewed this question yet, be the first!