450. Delete Node in a BST
package LeetCode_450
import LeetCode_814.TreeNode
/**
* 450. Delete Node in a BST
* https://leetcode.com/problems/delete-node-in-a-bst/description/
*
* 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).
* */
class Solution {
/*
* 1.node to be delete is leaf: simply remove it from tree
* 2.node to be delete has only one child: copy the child to the node and remove the child
* 3.node to be delete has two children: find inorder successor of the node, copy the content of the inorder
* successor to the node and delete the inorder successor. the inorder predecessor can also be used.
* */
fun deleteNode(root: TreeNode?, key: Int): TreeNode? {
if (root == null) {
return null
}
if (key < root.`val`) {
root.left = deleteNode(root.left, key)
} else if (key > root.`val`) {
root.right = deleteNode(root.right, key)
} else {
if (root.right == null) {
return root.left
} else if (root.left == null) {
return root.right
}
/*node with two children:
1. get the inorder successor(中序编历时的后继节点) (the smallest one in the right subtree)
5
/ \
3 6
/ \ \
2 4 7
node 3的inorder successor是4
2. replace root value by the value of inorder successor
*/
root.`val` = minValue(root.right) ?: -1
//delete the inorder successor
root.right = deleteNode(root.right, root.`val`)
}
return root
}
private fun minValue(node_: TreeNode?): Int? {
var node = node_
var min = node?.`val`
while (node?.left != null) {
min = node.left?.`val`
node = node.left
}
return min
}
}
标签:
leetcode
, binary search
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)