mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-08 16:54:50 +08:00
提供JavaScript版本的《删除二叉搜索树中的节点》
This commit is contained in:
@ -359,6 +359,51 @@ func deleteNode1(root *TreeNode)*TreeNode{
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
JavaScript版本
|
||||||
|
|
||||||
|
> 递归
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
/**
|
||||||
|
* Definition for a binary tree node.
|
||||||
|
* function TreeNode(val, left, right) {
|
||||||
|
* this.val = (val===undefined ? 0 : val)
|
||||||
|
* this.left = (left===undefined ? null : left)
|
||||||
|
* this.right = (right===undefined ? null : right)
|
||||||
|
* }
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @param {TreeNode} root
|
||||||
|
* @param {number} key
|
||||||
|
* @return {TreeNode}
|
||||||
|
*/
|
||||||
|
var deleteNode = function (root, key) {
|
||||||
|
if (root === null)
|
||||||
|
return root;
|
||||||
|
if (root.val === key) {
|
||||||
|
if (!root.left)
|
||||||
|
return root.right;
|
||||||
|
else if (!root.right)
|
||||||
|
return root.left;
|
||||||
|
else {
|
||||||
|
let cur = root.right;
|
||||||
|
while (cur.left) {
|
||||||
|
cur = cur.left;
|
||||||
|
}
|
||||||
|
cur.left = root.left;
|
||||||
|
let temp = root;
|
||||||
|
root = root.right;
|
||||||
|
delete root;
|
||||||
|
return root;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (root.val > key)
|
||||||
|
root.left = deleteNode(root.left, key);
|
||||||
|
if (root.val < key)
|
||||||
|
root.right = deleteNode(root.right, key);
|
||||||
|
return root;
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user