剑指offer 旋转数组的最小数字
作者:互联网
题目:把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。
输入一个非递减排序的数组的一个旋转,输出旋转数组的最小元素。
例如数组{3,4,5,1,2}为{1,2,3,4,5}的一个旋转,该数组的最小值为1。
NOTE:给出的所有元素都大于0,若数组大小为0,请返回0。
代码:
1 class Solution { 2 public: 3 int minNumberInRotateArray(vector<int> rotateArray) { 4 int length = rotateArray.size(),i; 5 if ( length == 0 ) return 0; 6 for ( i = 0; i < length; i ++){ 7 if( rotateArray[i + 1] < rotateArray[i]) break; 8 } 9 return rotateArray[i + 1]; 10 } 11 };
我的笔记:由于该题原数组均为递增排序的数组,故利用顺序查找,找到第一个后一位小于前一位的元素,输出即可。
标签:offer,int,元素,旋转,length,数组,rotateArray 来源: https://www.cnblogs.com/john1015/p/12909915.html