10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f3a597e + fb62b95 commit 4b439f0Copy full SHA for 4b439f0
C++/chapLinearList.tex
@@ -182,7 +182,7 @@ \subsubsection{代码}
182
int search(int A[], int n, int target) {
183
int first = 0, last = n;
184
while (first != last) {
185
- const int mid = (first + last) / 2;
+ const int mid = first + (last - first) / 2;
186
if (A[mid] == target)
187
return mid;
188
if (A[first] <= A[mid]) {
@@ -240,7 +240,7 @@ \subsubsection{代码}
240
bool search(int A[], int n, int target) {
241
242
243
244
245
return true;
246
if (A[first] < A[mid]) {
0 commit comments