标签:star cto style mic vector ota src image turn
把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。 输入一个非减排序的数组的一个旋转,输出旋转数组的最小元素。 例如数组{3,4,5,1,2}为{1,2,3,4,5}的一个旋转,该数组的最小值为1。 NOTE:给出的所有元素都大于0,若数组大小为0,请返回0。
解法一:
class Solution { public: int minNumberInRotateArray(vector<int> rotateArray) { /* if(rotateArray.size() == 0) { throw new std::exception("Invalid parameters"); } */ int start = 0,end = rotateArray.size()-1; int indexMid = start; while(rotateArray[start]>=rotateArray[end]) { if(end-start == 1) { indexMid = end; break; } indexMid=(start+end)/2; if(rotateArray[indexMid]>=rotateArray[start]) start = indexMid; else if(rotateArray[indexMid] <= rotateArray[end]) end = indexMid; } return rotateArray[indexMid]; } };
标签:star cto style mic vector ota src image turn
原文地址:https://www.cnblogs.com/chaoza1/p/10682796.html