[搜索旋转排序数组](https://leetcode.cn/problems/search-in-rotated-sorted-array/description/?envType=study-plan-v2&envId=top-100-liked)
二分查找,根据 [0] 和 [mid] 的大小关系判断哪部分是有序的
3 4 5 6 7 1 2
-------
6 7 1 2 3 4 5
-------
[搜索旋转排序数组](https://leetcode.cn/problems/search-in-rotated-sorted-array/description/?envType=study-plan-v2&envId=top-100-liked)
二分查找,根据 [0] 和 [mid] 的大小关系判断哪部分是有序的
3 4 5 6 7 1 2
-------
6 7 1 2 3 4 5
-------