LeetCode 81——搜索旋轉排序數組 II

1. 題目 2. 解答 2.1. 方法一 基於 LeetCode 33——搜索旋轉排序數組 中的方法二。 當 nums[mid] = nums[right] 時,比如 [1, 1, 2, 1, 1],[1, 1, 0, 1, 1],爲了找到正確的轉折點,我們查看 [mid, right] 之間有沒有不等於 nums[mid] 的值,若有,則繼續向右查找;否則向左查找。 class Solution
相關文章
相關標籤/搜索