给定一个二叉搜索树的根节点 root 和一个值 key,删除二叉搜索树中的 key 对应的节点,并保证二叉搜索树的性质不变。返回二叉搜索树(有可能被更新)的根节点的引用。

一般来说,删除节点可分为两个步骤:

  1. 首先找到需要删除的节点;
  2. 如果找到了,删除它。

示例 1:

https://assets.leetcode.com/uploads/2020/09/04/del_node_1.jpg

输入:root = [5,3,6,2,4,null,7], key = 3
输出:[5,4,6,2,null,null,7]
解释:给定需要删除的节点值是 3,所以我们首先找到 3 这个节点,然后删除它。
一个正确的答案是 [5,4,6,2,null,null,7], 如下图所示。
另一个正确答案是 [5,2,6,null,4,null,7]。

https://assets.leetcode.com/uploads/2020/09/04/del_node_supp.jpg

示例 2:

输入: root = [5,3,6,2,4,null,7], key = 0
输出: [5,3,6,2,4,null,7]
解释: 二叉树不包含值为 0 的节点

示例 3:

输入: root = [], key = 0
输出: []

提示:

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    public TreeNode deleteNode(TreeNode dummy, int key) {
        TreeNode root = dummy ;
        if (root == null ){
            return null;
        }
        else if(root.val < key){
            root.right = deleteNode(root.right, key);
        }
        else if(root.val > key){
            root.left =deleteNode( root.left,key);
        }
        else {
            if (root.left == null && root.right == null){
                // root =  null;
                return null;
            }
            else if(root.left == null && root.right !=null){
                //  root.val = root.right.val;
                //  root.right = null;
                 return root.right;
            }
            else if(root.left != null && root.right == null){
                // root.val = root.left.val;
                // root.left = null;
                return root.left;
            }
            else {
                TreeNode temp  = getMin(root.right); 
                root.val = temp.val;
                root.right = deleteNode(root.right, temp.val);
            }
        }
        return root;
    }
    public TreeNode getMin(TreeNode node ){
        while (node.left != null){
            node = node.left;
        }
        return node;
    }
}