Question: Q 5 . [ 4 ] Paul has an algorithm, find 2 D , to find an element x in an n n array A

Q5.[4] Paul has an algorithm, find2D, to find an element x in an nn array A. The algorithm
find2D iterates over the rows of A and calls the algorithm arrayFind (as given below) on each
one, until x is found or it has searched all rows of A. What is the worst-case running time of find2D
in terms of n? Is this a linear-time algorithm? Why or why not?
Algorithm arrayFind(x, A):
Input: An element x and an n-element array, A.
Output: The index i such that x=A[i] or -1 if no element of A is equal to x.
ilarr0
while x=A[i]iilarri+1ido
ifx=A[i] then
return i
else
ilarri+1
return -1
 Q5.[4] Paul has an algorithm, find2D, to find an element x

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!