Question

Determine the worst-case complexity of the algorithm in terms of n. // search a key in...

Determine the worst-case complexity of the algorithm in terms of n.

// search a key in an array a [1..n] of length n

for(int k = 1; k <= n; k++)

     if(a[k] == key) then return k;

return -1; // meaning key not found

0 0
Add a comment Improve this question Transcribed image text
Answer #1
for(int k = 1; k <= n; k++)             // Here this for loop iterates n times. O(n)
     if(a[k] == key) then return k;     // O(1)

return -1; // meaning key not found         // O(1)


Total  worst-case running time complexity is O(n)
Add a comment
Know the answer?
Add Answer to:
Determine the worst-case complexity of the algorithm in terms of n. // search a key in...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT