forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Find Minimum in Rotated Sorted Array II
- Loading branch information
Showing
3 changed files
with
151 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
146 changes: 146 additions & 0 deletions
146
src/findMinimumInRotatedSortedArray/findMinimumInRotatedSortedArray.II.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
// Source : https://oj.leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/ | ||
// Author : Hao Chen | ||
// Date : 2014-10-21 | ||
|
||
/********************************************************************************** | ||
* | ||
* Follow up for "Find Minimum in Rotated Sorted Array": | ||
* What if duplicates are allowed? | ||
* | ||
* Would this affect the run-time complexity? How and why? | ||
* | ||
* Suppose a sorted array 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. | ||
* | ||
**********************************************************************************/ | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <time.h> | ||
#include <iostream> | ||
#include <vector> | ||
#include <algorithm> | ||
using namespace std; | ||
|
||
|
||
/* | ||
* Need be very careful for the following cases: | ||
* | ||
* [3, 3, 3, 3, 3] | ||
* | ||
* [3, 3, 3, 1, 3] | ||
* | ||
*/ | ||
|
||
int findMin(vector<int> &num) { | ||
|
||
int low=0, high=num.size()-1; | ||
|
||
while(high-low>1){ | ||
//skip the same element, this would cause the O(n) run-time complexity. | ||
while (high - low > 1 && num[low] == num[high]){ | ||
low++; | ||
} | ||
//binary search | ||
int mid = low + (high-low)/2; | ||
//Notes: checking the equal situation | ||
if (num[low] <= num[mid] && num[mid] <= num[high]){ | ||
return num[low] < num[mid] ? num[low] : num[mid]; | ||
} | ||
//move the high pointer to the middle, if sub-array from low to mid is rotated. | ||
if (num[low] > num [mid]){ | ||
high = mid; | ||
continue; | ||
} | ||
// move the low pointer to the middle, if sub-array from mid to high is rotated. | ||
if (num[mid] > num[high]){ | ||
low = mid; | ||
continue; | ||
} | ||
} | ||
|
||
if (high == low) return num[low]; | ||
return num[low] < num[high] ? num[low] : num[high]; | ||
|
||
} | ||
|
||
|
||
void rotate_array(int a[], int n, int pos){ | ||
int i, from=0; | ||
pos = pos % n; | ||
if (n<=0) return; | ||
|
||
int tmp = a[0]; | ||
|
||
for(int i=0, step=0; step<n && i<pos; step++){ | ||
int to; | ||
if (from-pos < 0) { | ||
to = n-pos+from; | ||
}else{ | ||
to = from-pos; | ||
} | ||
int t ; | ||
t = a[to]; | ||
a[to] = tmp; | ||
tmp = t; | ||
from = to; | ||
if ( to == i ){ | ||
i++; | ||
from++; | ||
tmp = a[from]; | ||
} | ||
} | ||
|
||
} | ||
|
||
void printArray(int A[], int n) { | ||
printf("{"); | ||
for(int i=0; i<n; i++) { | ||
printf("%d, ", A[i]); | ||
} | ||
printf("}\n"); | ||
} | ||
|
||
int main(int argc, char** argv) | ||
{ | ||
|
||
int cnt=20; | ||
|
||
if (argc>1) { | ||
cnt = atoi(argv[1]); | ||
} | ||
|
||
srand(time(NULL)); | ||
|
||
int expectedMin, actualMin; | ||
int *a = new int[cnt]; | ||
for(int n=0; n<=cnt; n++) { | ||
printf("--------------------------------------\n"); | ||
//generate the array with random elements | ||
for(int i=0; i<cnt; i++){ | ||
a[i]=rand()%cnt; | ||
} | ||
//sort the array | ||
sort(a, a+cnt); | ||
expectedMin = a[0]; | ||
//printArray(a, cnt); | ||
int rotate_pos = random() % cnt; | ||
//rotate_pos=2; | ||
printf("rotate=%d\n", rotate_pos); | ||
rotate_array(a, cnt, rotate_pos); | ||
printArray(a, cnt); | ||
|
||
vector<int> num(a, a+cnt); | ||
actualMin = findMin(num); | ||
cout << "findMin = " << actualMin << " " << (expectedMin==actualMin ? "passed" : "failed") << endl; | ||
|
||
} | ||
delete[] a; | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters