mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 13:46: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 时为空)
|
||||
while (i < j) {
|
||||
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;
|
||||
} else if (nums[m] > target) { // 此情况说明 target 在区间 [i, m) 中
|
||||
} else if (nums[m] > target) { // 此情况说明 target 在区间 [i, m] 中
|
||||
j = m;
|
||||
} else { // 找到目标元素,返回其索引
|
||||
return m;
|
||||
|
|
Loading…
Reference in a new issue