前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >leetcode450. Delete Node in a BST

leetcode450. Delete Node in a BST

作者头像
眯眯眼的猫头鹰
发布2019-07-02 14:22:24
3250
发布2019-07-02 14:22:24
举报

题目要求

代码语言:javascript
复制
Given a root node reference of a BST and a key, delete the node with the given key in the BST. Return the root node reference (possibly updated) of the BST.

Basically, the deletion can be divided into two stages:

Search for a node to remove.
If the node is found, delete the node.
Note: Time complexity should be O(height of tree).

Example:

root = [5,3,6,2,4,null,7]
key = 3

    5
   / \
  3   6
 / \   \
2   4   7

Given key to delete is 3. So we find the node with value 3 and delete it.

One valid answer is [5,4,6,2,null,null,7], shown in the following BST.

    5
   / \
  4   6
 /     \
2       7

Another valid answer is [5,2,6,null,4,null,7].

    5
   / \
  2   6
   \   \
    4   7

假设有一棵二叉搜索树,现在要求从二叉搜索树中删除指定值,使得删除后的结果依然是一棵二叉搜索树。

思路和代码

二叉搜索树的特点是,对于树中的任何一个节点,一定满足大于其所有左子节点值,小于所有其右子节点值。当删除二叉搜索树中的一个节点时,一共有三种场景:

  1. 该该节点为叶节点,此时无需进行任何操作,直接删除该节点即可
  2. 该节点只有一个子树,则将唯一的直接子节点替换掉当前的节点即可
  3. 该节点既有做左子节点又有右子节点。这时候有两种选择,要么选择左子树的最大值,要么选择右子树的最小值填充至当前的节点,再递归的在子树中删除对应的最大值或是最小值。

对每种情况的图例如下:

代码语言:javascript
复制
1. 叶节点
    5
   / \
  2   6
   \   \
    4   7 (删除4)
结果为:
    5
   / \
  2   6
       \
        7
        
2. 只有左子树或是只有右子树
    5
   / \
  3   6
 / \   \
2   4   7(删除6)
结果为
    5
   / \
  3   6
 / \   
2   4   

3. 既有左子树又有右子树
    6
   / \
  3   7
 / \   \
2   5   8 (删除6)
   /
  4
首先找到6的左子树中的最大值为5,将5填充到6的位置
    5
   / \
  3   7
 / \   \
2   5   8 (删除5)
   /
  4
接着递归的在左子树中删除5,此时5满足只有一个子树的场景,因此直接用子树替换即可
    5
   / \
  3   7
 / \   \
2   4   8 (删除5)

代码如下:

代码语言:javascript
复制
    public TreeNode deleteNode(TreeNode cur, int key) {
        if(cur == null) return null;
        else if(cur.val == key) {
            if(cur.left != null && cur.right != null) {
                TreeNode left = cur.left;
                while(left.right != null) {
                    left = left.right;
                }
                cur.val = left.val;
                cur.left = deleteNode(cur.left, left.val);
            }else if(cur.left != null) {
                return cur.left;
            }else if(cur.right != null){
                return cur.right;
            }else {
                return null;
            }
        }else if(cur.val > key) {
            cur.left = deleteNode(cur.left, key);
        }else {
            cur.right = deleteNode(cur.right, key);
        }
        return cur;
    }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目要求
  • 思路和代码
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档