This commit is contained in:
Hao Chen 2016-01-14 09:31:58 +08:00
parent 0c35f347da
commit 5a1eddb6f1

View File

@ -38,7 +38,7 @@ int findMin(vector<int> &num) {
}
// The array is rotated
// Spli it into two part, the minimal value must be the rotated part
// Split it into two part, the minimal value must be the rotated part
// if the left part is rotated, warch the left part
if (num[low] > num [mid]){