- Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathFindMinimumInRotatedSortedArray153.java
More file actions
Latest commit
75 lines (64 loc) · 1.71 KB
/
Copy pathFindMinimumInRotatedSortedArray153.java
File metadata and controls
75 lines (64 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
* 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.
*
* You may assume no duplicate exists in the array.
*
* Example 1:
*
* Input: [3,4,5,1,2]
* Output: 1
* Example 2:
*
* Input: [4,5,6,7,0,1,2]
* Output: 0
*
*/
publicclassFindMinimumInRotatedSortedArray153 {
publicintfindMin(int[] nums) {
returnfindMin(nums, 0, nums.length-1);
}
publicintfindMin(int[] nums, ints, inte) {
if (nums[s] <= nums[e]) returnnums[s];
intmid = (s + e) / 2;
returnMath.min(findMin(nums, s, mid), findMin(nums, mid+1, e));
}
publicintfindMin2(int[] nums) {
ints = 0;
inte = nums.length-1;
while (s < e) {
intmid = (s + e) / 2;
if (nums[mid] > nums[e]) {
s = mid + 1;
} else {
e = mid;
}
}
returnnums[e];
}
publicintfindMin3(int[] nums) {
intstart = 0;
intend = nums.length - 1;
intstartVal = nums[start];
intendVal = nums[end];
while (start + 1 < end) {
intmid = start + (end - start) / 2;
if (nums[mid] > startVal) {
start = mid;
} elseif (nums[mid] < endVal) {
end = mid;
}
}
returnMath.min(nums[end], Math.min(nums[start], Math.min(startVal, endVal)));
}
publicintfindMin4(int[] nums) {
for (inti=1; i<nums.length; i++) {
if (nums[i] < nums[i-1]) returnnums[i];
}
returnnums[0];
}
}