|
|
@ -155,17 +155,16 @@ comments: true
|
|
|
|
|
|
|
|
|
|
|
|
```typescript title="binary_search_tree.ts"
|
|
|
|
```typescript title="binary_search_tree.ts"
|
|
|
|
/* 查找节点 */
|
|
|
|
/* 查找节点 */
|
|
|
|
function search(num: number): TreeNode | null {
|
|
|
|
search(num: number): TreeNode | null {
|
|
|
|
let cur = root;
|
|
|
|
let cur = this.root;
|
|
|
|
// 循环查找,越过叶节点后跳出
|
|
|
|
// 循环查找,越过叶节点后跳出
|
|
|
|
while (cur !== null) {
|
|
|
|
while (cur !== null) {
|
|
|
|
if (cur.val < num) {
|
|
|
|
// 目标节点在 cur 的右子树中
|
|
|
|
cur = cur.right; // 目标节点在 cur 的右子树中
|
|
|
|
if (cur.val < num) cur = cur.right;
|
|
|
|
} else if (cur.val > num) {
|
|
|
|
// 目标节点在 cur 的左子树中
|
|
|
|
cur = cur.left; // 目标节点在 cur 的左子树中
|
|
|
|
else if (cur.val > num) cur = cur.left;
|
|
|
|
} else {
|
|
|
|
// 找到目标节点,跳出循环
|
|
|
|
break; // 找到目标节点,跳出循环
|
|
|
|
else break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 返回目标节点
|
|
|
|
// 返回目标节点
|
|
|
|
return cur;
|
|
|
|
return cur;
|
|
|
@ -489,7 +488,7 @@ comments: true
|
|
|
|
else cur = cur.left;
|
|
|
|
else cur = cur.left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 插入节点
|
|
|
|
// 插入节点
|
|
|
|
let node = new TreeNode(num);
|
|
|
|
const node = new TreeNode(num);
|
|
|
|
if (pre.val < num) pre.right = node;
|
|
|
|
if (pre.val < num) pre.right = node;
|
|
|
|
else pre.left = node;
|
|
|
|
else pre.left = node;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -499,33 +498,28 @@ comments: true
|
|
|
|
|
|
|
|
|
|
|
|
```typescript title="binary_search_tree.ts"
|
|
|
|
```typescript title="binary_search_tree.ts"
|
|
|
|
/* 插入节点 */
|
|
|
|
/* 插入节点 */
|
|
|
|
function insert(num: number): void {
|
|
|
|
insert(num: number): void {
|
|
|
|
// 若树为空,则初始化根节点
|
|
|
|
// 若树为空,则初始化根节点
|
|
|
|
if (root === null) {
|
|
|
|
if (this.root === null) {
|
|
|
|
root = new TreeNode(num);
|
|
|
|
this.root = new TreeNode(num);
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let cur = root,
|
|
|
|
let cur: TreeNode | null = this.root,
|
|
|
|
pre: TreeNode | null = null;
|
|
|
|
pre: TreeNode | null = null;
|
|
|
|
// 循环查找,越过叶节点后跳出
|
|
|
|
// 循环查找,越过叶节点后跳出
|
|
|
|
while (cur !== null) {
|
|
|
|
while (cur !== null) {
|
|
|
|
if (cur.val === num) {
|
|
|
|
// 找到重复节点,直接返回
|
|
|
|
return; // 找到重复节点,直接返回
|
|
|
|
if (cur.val === num) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre = cur;
|
|
|
|
pre = cur;
|
|
|
|
if (cur.val < num) {
|
|
|
|
// 插入位置在 cur 的右子树中
|
|
|
|
cur = cur.right as TreeNode; // 插入位置在 cur 的右子树中
|
|
|
|
if (cur.val < num) cur = cur.right;
|
|
|
|
} else {
|
|
|
|
// 插入位置在 cur 的左子树中
|
|
|
|
cur = cur.left as TreeNode; // 插入位置在 cur 的左子树中
|
|
|
|
else cur = cur.left;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 插入节点
|
|
|
|
// 插入节点
|
|
|
|
let node = new TreeNode(num);
|
|
|
|
const node = new TreeNode(num);
|
|
|
|
if (pre!.val < num) {
|
|
|
|
if (pre!.val < num) pre!.right = node;
|
|
|
|
pre!.right = node;
|
|
|
|
else pre!.left = node;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
pre!.left = node;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
@ -1044,7 +1038,7 @@ comments: true
|
|
|
|
// 子节点数量 = 0 or 1
|
|
|
|
// 子节点数量 = 0 or 1
|
|
|
|
if (cur.left === null || cur.right === null) {
|
|
|
|
if (cur.left === null || cur.right === null) {
|
|
|
|
// 当子节点数量 = 0 / 1 时, child = null / 该子节点
|
|
|
|
// 当子节点数量 = 0 / 1 时, child = null / 该子节点
|
|
|
|
let child = cur.left !== null ? cur.left : cur.right;
|
|
|
|
const child = cur.left !== null ? cur.left : cur.right;
|
|
|
|
// 删除节点 cur
|
|
|
|
// 删除节点 cur
|
|
|
|
if (cur !== this.root) {
|
|
|
|
if (cur !== this.root) {
|
|
|
|
if (pre.left === cur) pre.left = child;
|
|
|
|
if (pre.left === cur) pre.left = child;
|
|
|
@ -1073,57 +1067,48 @@ comments: true
|
|
|
|
|
|
|
|
|
|
|
|
```typescript title="binary_search_tree.ts"
|
|
|
|
```typescript title="binary_search_tree.ts"
|
|
|
|
/* 删除节点 */
|
|
|
|
/* 删除节点 */
|
|
|
|
function remove(num: number): void {
|
|
|
|
remove(num: number): void {
|
|
|
|
// 若树为空,直接提前返回
|
|
|
|
// 若树为空,直接提前返回
|
|
|
|
if (root === null) {
|
|
|
|
if (this.root === null) return;
|
|
|
|
return;
|
|
|
|
let cur: TreeNode | null = this.root,
|
|
|
|
}
|
|
|
|
|
|
|
|
let cur = root,
|
|
|
|
|
|
|
|
pre: TreeNode | null = null;
|
|
|
|
pre: TreeNode | null = null;
|
|
|
|
// 循环查找,越过叶节点后跳出
|
|
|
|
// 循环查找,越过叶节点后跳出
|
|
|
|
while (cur !== null) {
|
|
|
|
while (cur !== null) {
|
|
|
|
// 找到待删除节点,跳出循环
|
|
|
|
// 找到待删除节点,跳出循环
|
|
|
|
if (cur.val === num) {
|
|
|
|
if (cur.val === num) break;
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
pre = cur;
|
|
|
|
pre = cur;
|
|
|
|
if (cur.val < num) {
|
|
|
|
// 待删除节点在 cur 的右子树中
|
|
|
|
cur = cur.right as TreeNode; // 待删除节点在 cur 的右子树中
|
|
|
|
if (cur.val < num) cur = cur.right;
|
|
|
|
} else {
|
|
|
|
// 待删除节点在 cur 的左子树中
|
|
|
|
cur = cur.left as TreeNode; // 待删除节点在 cur 的左子树中
|
|
|
|
else cur = cur.left;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 若无待删除节点,则直接返回
|
|
|
|
// 若无待删除节点,则直接返回
|
|
|
|
if (cur === null) {
|
|
|
|
if (cur === null) return;
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// 子节点数量 = 0 or 1
|
|
|
|
// 子节点数量 = 0 or 1
|
|
|
|
if (cur.left === null || cur.right === null) {
|
|
|
|
if (cur.left === null || cur.right === null) {
|
|
|
|
// 当子节点数量 = 0 / 1 时, child = null / 该子节点
|
|
|
|
// 当子节点数量 = 0 / 1 时, child = null / 该子节点
|
|
|
|
let child = cur.left !== null ? cur.left : cur.right;
|
|
|
|
const child: TreeNode | null =
|
|
|
|
|
|
|
|
cur.left !== null ? cur.left : cur.right;
|
|
|
|
// 删除节点 cur
|
|
|
|
// 删除节点 cur
|
|
|
|
if (cur != root) {
|
|
|
|
if (cur !== this.root) {
|
|
|
|
if (pre!.left === cur) {
|
|
|
|
if (pre!.left === cur) pre!.left = child;
|
|
|
|
pre!.left = child;
|
|
|
|
else pre!.right = child;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
pre!.right = child;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
// 若删除节点为根节点,则重新指定根节点
|
|
|
|
// 若删除节点为根节点,则重新指定根节点
|
|
|
|
root = child;
|
|
|
|
this.root = child;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 子节点数量 = 2
|
|
|
|
// 子节点数量 = 2
|
|
|
|
else {
|
|
|
|
else {
|
|
|
|
// 获取中序遍历中 cur 的下一个节点
|
|
|
|
// 获取中序遍历中 cur 的下一个节点
|
|
|
|
let tmp = cur.right;
|
|
|
|
let tmp: TreeNode | null = cur.right;
|
|
|
|
while (tmp.left !== null) {
|
|
|
|
while (tmp!.left !== null) {
|
|
|
|
tmp = tmp.left;
|
|
|
|
tmp = tmp!.left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 递归删除节点 tmp
|
|
|
|
// 递归删除节点 tmp
|
|
|
|
remove(tmp!.val);
|
|
|
|
this.remove(tmp!.val);
|
|
|
|
// 用 tmp 覆盖 cur
|
|
|
|
// 用 tmp 覆盖 cur
|
|
|
|
cur.val = tmp.val;
|
|
|
|
cur.val = tmp!.val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
```
|
|
|
|