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:

  1. Search for a node to remove.
  2. 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
class Solution {
public:
TreeNode* deleteNode(TreeNode* root, int key) {
if(!root) return root;
TreeNode* ret;
if(root->val == key) {
TreeNode* rnode_lmost = getlm_or_rm_node(root->right, true);
if(rnode_lmost) {
rnode_lmost->left = root->left;
ret = root->right;
}else ret = root->left;
}else {
if(key < root->val) root->left = deleteNode(root->left, key);
else root->right = deleteNode(root->right, key);
ret = root;
}
return ret;
}
TreeNode* getlm_or_rm_node(TreeNode* root, bool left){
if(!root) return root;
if(left) {
while(root->left) root = root->left;
}else {
while(root->right) root = root->right;
}
return root;
}
};
class Solution {
public:
TreeNode *deleteNode(TreeNode *root, int key) {
TreeNode **cur = &root; while (*cur && (*cur)->val != key)
cur = (key > (*cur)->val) ? &(*cur)->right : &(*cur)->left; if (*cur) {
if (!(*cur)->right) *cur = (*cur)->left;
else {
TreeNode **successor = &(*cur)->right;
while ((*successor)->left) successor = &(*successor)->left;
swap((*cur)->val, (*successor)->val);
*successor = (*successor)->right ? (*successor)->right : nullptr;
}
}
return root;
} };

最新文章

  1. 一次页面从Jq到Vuejs+PartialView的迁徙
  2. target 事件属性
  3. Oracle 11g 的官方支持周期和时限
  4. DDD:群里关于验证的结论
  5. Iptables 规则 一些简单实例和详细介绍
  6. Poj 3982 序列
  7. J2EE项目应用开发过程中的易错点
  8. Linux-配置vim开发环境
  9. 窗口缩小div内容隐藏看不到怎么解决?
  10. 简单总结下 cookie、session
  11. Spark框架详解
  12. 20155332 2016-2017-2 《Java程序设计》第5周学习总结
  13. Python2和Python3中print的不同点
  14. ionic platform add ios, Error:spawn EACCES
  15. Windows server 2012-remoteapp RDWEB修改默认端口
  16. Unity判断网络是否连接以及判断是否连接WiFi
  17. ES之八:elasticsearch2.x下的JAVA API示例
  18. Codeforces Round #360 (Div. 2) D. Remainders Game 数学
  19. 关于 ImageLoader 说的够细了。。。
  20. Android 4.3实现类似iOS在音乐播放过程中如果有来电则音乐声音渐小铃声渐大的效果

热门文章

  1. 定制centos6.5自动安装ISO光盘
  2. 【转载】内联函数 —— C 中关键字 inline 用法解析
  3. OAuth2在微服务架构中的应用
  4. centos 安装ELK
  5. html知识补充
  6. python中函数的定义、返回值以及参数的简要介绍
  7. VGridControl 使用技巧
  8. Gitlab,Git设置及使用前的准备
  9. Mac下mysql出现错误:ERROR 1055 (42000)
  10. 函数指针,使用qsort,进行结构体排序