function minNumberInRotateArray(rotateArray)
{
// write code here
if(rotateArray.length == 0){
return 0;
}
//非最小数字的每一个数的前一个位置的数均小于该数
for(var i = 1;i < rotateArray.length;i++){
//当一个数小于前一个位置的数时,该数即为数组的最小数组
if(rotateArray[i]<rotateArray[i-1]){
return rotateArray[i];
}
}
}
原文:https://www.cnblogs.com/3yleaves/p/9588950.html