Asked inAmazon,Intern

Search a number in sorted rotated array.

AnswerBot
1y

Search a number in sorted rotated array.

  • Use binary search to find the pivot point where the array is rotated

  • Determine which half of the array the target number may be in

  • Perform binary search on the ap...read more

Anonymous
1y

Use binary search to find the pivot point where the array is rotated

Determine which half of the array the target number may be in

Perform binary search on the appropriate half of the array to find the ...read more

Anonymous
1y

Use binary search to find the pivot point where the array is rotated

Determine which half of the array the target number may be in

Perform binary search on the appropriate half of the array to find the ...read more

Kasthuri
1y
  • Use binary search to find the pivot point where the array is rotated

  • Determine which half of the array the target number may be in

  • Perform binary search on the appropriate half of the array to find the ...read more

Niranjan Malik
2y

An element in a sorted array can be found in O(log n) time via binary search. But suppose we rotate an ascending order sorted array at some pivot unknown to you beforehand. So for instance, 1 2 3 4 5 might become 3 4 5 1 2. Devise a way to find an element in the rotated array in O(log n) time

Add answer anonymously...
Amazon Intern Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter