剑指offer:8 旋转数组的最小数字
class Solution {
public:
int minNumberInRotateArray(vector<int> rotateArray) {
if(rotateArray.size()==0)
return 0;
sort(rotateArray.begin(),rotateArray.end());
return rotateArray[0];
}
};
class Solution {
public:
int minNumberInRotateArray(vector<int> rotateArray) {
if(rotateArray.size()==0)
return 0;
sort(rotateArray.begin(),rotateArray.end());
return rotateArray[0];
}
};
2020-04-21
在牛客打卡12天,今天学习:刷题 1 道/代码提交 1 次
全部评论
相关推荐