mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-27 02:06:29 +08:00
Update binary search docs
This commit is contained in:
parent
eaa48b6b9f
commit
27bad89eeb
1 changed files with 2 additions and 2 deletions
|
@ -29,9 +29,9 @@ const binarySearch1 = function (nums: number[], target: number): number {
|
||||||
// 循环,当搜索区间为空时跳出(当 i = j 时为空)
|
// 循环,当搜索区间为空时跳出(当 i = j 时为空)
|
||||||
while (i < j) {
|
while (i < j) {
|
||||||
const m = Math.floor(i + (j - i) / 2); // 计算中点索引 m
|
const m = Math.floor(i + (j - i) / 2); // 计算中点索引 m
|
||||||
if (nums[m] < target) { // 此情况说明 target 在区间 [m+1, j) 中
|
if (nums[m] < target) { // 此情况说明 target 在区间 [m+1, j] 中
|
||||||
i = m + 1;
|
i = m + 1;
|
||||||
} else if (nums[m] > target) { // 此情况说明 target 在区间 [i, m) 中
|
} else if (nums[m] > target) { // 此情况说明 target 在区间 [i, m] 中
|
||||||
j = m;
|
j = m;
|
||||||
} else { // 找到目标元素,返回其索引
|
} else { // 找到目标元素,返回其索引
|
||||||
return m;
|
return m;
|
||||||
|
|
Loading…
Reference in a new issue