• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
neverlandly
博客园    首页    新随笔    联系   管理    订阅  订阅

Leetcode: Delete Node in a BST

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

recursively find the node that needs to be deleted

Once the node is found, have to handle the below 4 cases

  • node doesn't have left nor right - return null
  • node only has left subtree- return the left subtree
  • node only has right subtree- return the right subtree
  • node has both left and right - find the minimum value in the right subtree, set that value to the currently found node, then recursively delete the minimum value in the right subtree
 1 /**
 2  * Definition for a binary tree node.
 3  * public class TreeNode {
 4  *     int val;
 5  *     TreeNode left;
 6  *     TreeNode right;
 7  *     TreeNode(int x) { val = x; }
 8  * }
 9  */
10 public class Solution {
11     public TreeNode deleteNode(TreeNode root, int key) {
12         if (root == null) return null;
13         if (key < root.val) {
14             root.left = deleteNode(root.left, key);
15         }
16         else if (key > root.val) {
17             root.right = deleteNode(root.right, key);
18         }
19         else { //k == root.val
20             if (root.left == null) return root.right;
21             else if (root.right == null) return root.left;
22             else { // both root.left and root.right are not null
23                 TreeNode minRight = findMin(root.right);
24                 root.val = minRight.val;
25                 root.right = deleteNode(root.right, minRight.val);
26             }
27         }
28         return root;
29     }
30     
31     public TreeNode findMin(TreeNode cur) {
32         while (cur.left != null) {
33             cur = cur.left;
34         }
35         return cur;
36     }
37 }

 

posted @ 2016-12-14 12:19  neverlandly  阅读(497)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3