搜索旋转排序数组
搜索旋转排序数组
https://leetcode.cn/problems/search-in-rotated-sorted-array/
二分查找
对于一个旋转后的数组,取它的中点,则一定有一边是有序的。对于有序的那一边,如果 target 在那个范围内,则只需要搜索那一边即可,否则搜索另一边。
1 |
|
https://leetcode.cn/problems/search-in-rotated-sorted-array/
对于一个旋转后的数组,取它的中点,则一定有一边是有序的。对于有序的那一边,如果 target 在那个范围内,则只需要搜索那一边即可,否则搜索另一边。
1 |
|
目录