mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-08 00:43:04 +08:00
Merge pull request #722 from Rythsman/master
Update 0450.删除二叉搜索树中的节点.md
This commit is contained in:
@ -118,10 +118,25 @@ public:
|
||||
if (root == nullptr) return root; // 第一种情况:没找到删除的节点,遍历到空节点直接返回了
|
||||
if (root->val == key) {
|
||||
// 第二种情况:左右孩子都为空(叶子节点),直接删除节点, 返回NULL为根节点
|
||||
if (root->left == nullptr && root->right == nullptr) {
|
||||
///! 内存释放
|
||||
delete root;
|
||||
return nullptr;
|
||||
}
|
||||
// 第三种情况:其左孩子为空,右孩子不为空,删除节点,右孩子补位 ,返回右孩子为根节点
|
||||
if (root->left == nullptr) return root->right;
|
||||
else if (root->left == nullptr) {
|
||||
auto retNode = root->right;
|
||||
///! 内存释放
|
||||
delete root;
|
||||
return retNode;
|
||||
}
|
||||
// 第四种情况:其右孩子为空,左孩子不为空,删除节点,左孩子补位,返回左孩子为根节点
|
||||
else if (root->right == nullptr) return root->left;
|
||||
else if (root->right == nullptr) {
|
||||
auto retNode = root->left;
|
||||
///! 内存释放
|
||||
delete root;
|
||||
return retNode;
|
||||
}
|
||||
// 第五种情况:左右孩子节点都不为空,则将删除节点的左子树放到删除节点的右子树的最左面节点的左孩子的位置
|
||||
// 并返回删除节点右孩子为新的根节点。
|
||||
else {
|
||||
|
Reference in New Issue
Block a user