标签:知识点 返回 amp enter 最小 span 知识 for item
看起来不需要用二分法查找
---------------------------------------------------------
class Solution{ public: int minNumberInRotateArray(vector<int> rotateArray) { if(rotateArray.size() == 0) return 0; for(vector<int>::iterator it = rotateArray.begin(); it!=rotateArray.end()-1 ; it++) { if( *it > *(it+1)) { return *(it+1); } } return *(rotateArray.end()); } };
标签:知识点 返回 amp enter 最小 span 知识 for item
原文地址:https://www.cnblogs.com/evidd/p/10563161.html