剑指offer:旋转数组的最小数字
程序员文章站
2022-06-17 19:21:52
...
class Solution {
public:
int minNumberInRotateArray(vector<int> rotateArray) {
int len = rotateArray.size();
if(len == 0) return 0;
int t = rotateArray[0];
for(int i = 0; i < len; i++)
if(rotateArray[i] < rotateArray[0]) rotateArray[0] = rotateArray[i];
return rotateArray[0];
}
};
上一篇: Leetcode162:寻找峰值