For the list [44, 18, 74, 61, 42, 31], how will the array elements look like after second pass (after i-2 but before i=3) of the Insertion sort algorithm? def insertionSort(a): for i in range(1,len(a)): currentvalue = a[i] position = i while position>0 and a[position-1]>currentvalue: a[position]=a[position-1] position = position-1 a[position]=currentvalue return a [18, 44, 74, 61, 42, 31] [18, 44, 61, 74, 42, 31] [18, 42, 44, 61, 74, 31] [18, 31, 42, 44, 61, 74]

Linear Algebra: A Modern Introduction
4th Edition
ISBN:9781285463247
Author:David Poole
Publisher:David Poole
Chapter2: Systems Of Linear Equations
Section2.2: Direct Methods For Solving Linear Systems
Problem 2CEXP
icon
Related questions
Question
For the list [44, 18, 74, 61, 42, 31], how will the array elements look like after second
pass (after i-2 but before i=3) of the Insertion sort algorithm?
def insertionSort(a):
for i in range(1,len(a)):
currentvalue = a[i]
position = i
while position>0 and a[position-1]>currentvalue:
a[position]=a[position-1]
position = position-1
a[position]=currentvalue
return a
[18, 44, 74, 61, 42, 31]
[18, 44, 61, 74, 42, 31]
[18, 42, 44, 61, 74, 31]
[18, 31, 42, 44, 61, 74]
Transcribed Image Text:For the list [44, 18, 74, 61, 42, 31], how will the array elements look like after second pass (after i-2 but before i=3) of the Insertion sort algorithm? def insertionSort(a): for i in range(1,len(a)): currentvalue = a[i] position = i while position>0 and a[position-1]>currentvalue: a[position]=a[position-1] position = position-1 a[position]=currentvalue return a [18, 44, 74, 61, 42, 31] [18, 44, 61, 74, 42, 31] [18, 42, 44, 61, 74, 31] [18, 31, 42, 44, 61, 74]
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 1 steps

Blurred answer
Recommended textbooks for you
Linear Algebra: A Modern Introduction
Linear Algebra: A Modern Introduction
Algebra
ISBN:
9781285463247
Author:
David Poole
Publisher:
Cengage Learning