//以数组最左边的数作为比较基准 public int minNumberInRotateArray(int [] array) { if(array.length==0) { return 0; } int left=0; int...