-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path154.find-minimum-in-rotated-sorted-array-ii.cpp
More file actions
58 lines (58 loc) · 1.19 KB
/
154.find-minimum-in-rotated-sorted-array-ii.cpp
File metadata and controls
58 lines (58 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* @lc app=leetcode id=154 lang=cpp
*
* [154] Find Minimum in Rotated Sorted Array II
*
* https://leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/description/
*
* algorithms
* Hard (39.67%)
* Total Accepted: 141.5K
* Total Submissions: 356K
* Testcase Example: '[1,3,5]'
*
* Suppose an array sorted in ascending order is rotated at some pivot unknown
* to you beforehand.
*
* (i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]).
*
* Find the minimum element.
*
* The array may contain duplicates.
*
* Example 1:
*
*
* Input: [1,3,5]
* Output: 1
*
* Example 2:
*
*
* Input: [2,2,2,0,1]
* Output: 0
*
* Note:
*
*
* This is a follow up problem to Find Minimum in Rotated Sorted Array.
* Would allow duplicates affect the run-time complexity? How and why?
*
*
*/
class Solution {
public:
int findMin(vector<int>& nums) {
int l = 0, r = nums.size() - 1;
while (l < r) {
int mid = l + (r - l) / 2;
if (nums[mid] == nums[r])
--r;
else if (nums[mid] < nums[r])
r = mid;
else
l = mid + 1;
}
return nums[l];
}
};