Question: What is the basic operation (that which is executed maximum number of times) in the following code? reverse(a): for i = 1 to len(a)-1 x
What is the basic operation (that which is executed maximum number of times) in the following code? reverse(a): for i = 1 to len(a)-1 x = a[i] for j = i downto 1 a[j] = a[j-1] a[0] X O x = a[i] O a[j] = a[j-1] for j = i to 1 a[0].= x
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
