[剑指Offer] 6.旋转数组的最小数字(二分法)

时间:2021-09-13 08:32:56

题目描述

把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。
输入一个非递减排序的数组的一个旋转,输出旋转数组的最小元素
例如数组{3,4,5,1,2}为{1,2,3,4,5}的一个旋转,该数组的最小值为1。
NOTE:给出的所有元素都大于0,若数组大小为0,请返回0。

【思路1】直接调用快排~~~

 class Solution {
public:
int minNumberInRotateArray(vector<int> rotateArray) {
sort(rotateArray.begin(),rotateArray.end());
return rotateArray[];
}
};

[剑指Offer] 6.旋转数组的最小数字(二分法)

【思路2】使用二分法

[剑指Offer] 6.旋转数组的最小数字(二分法)

。。。像素太渣了,凑合看吧

 class Solution {
public:
int minNumberInRotateArray(vector<int> rotateArray) {
int low = ,high = rotateArray.size() - ,mid;
while(low < high){
mid = low + ( high - low ) / ;
if(rotateArray[mid] > rotateArray[high])
low = mid + ;
else if(rotateArray[mid] == rotateArray[high])
high = high - ;
else
high = mid;
}
return rotateArray[low];
}
};

[剑指Offer] 6.旋转数组的最小数字(二分法)