Worst case to find maximum element in descending sorted array?
I guess best case, average case, and worst cases will all be same because maximum is going to be a first element.is it?
Cases will be Big-O(1)? kindly correct my speculation.
Worst case to find maximum element in descending sorted array?
I guess best case, average case, and worst cases will all be same because maximum is going to be a first element.is it?
Cases will be Big-O(1)? kindly correct my speculation.
if you are using iteration for search from element 1 to last then Yes.
Other wise it depends a lot on which search algorithm you are going to use.