代码随想录2.19LeetCode235二叉搜索树的最近公共祖先701 二叉搜索树中的出入操作;450删除二叉树中的节点

文章介绍了如何在C++中实现二叉搜索树的三个关键操作:1.查找两个节点的最低公共祖先;2.向二叉搜索树中插入新节点;3.删除给定键值的节点。这些函数展示了对二叉树数据结构的管理技巧。
摘要由CSDN通过智能技术生成

题目:235
class Solution {
public:
TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q) {
while(root) {
if (root->val > p->val && root->val > q->val) {
root = root->left;
} else if (root->val < p->val && root->val < q->val) {
root = root->right;
} else return root;
}
return NULL;
}
};
题目:701
class Solution {
public:
TreeNode* insertIntoBST(TreeNode* root, int val) {
if(root== NULL){
TreeNode *node= new TreeNode(val);
return node;
}
TreeNode *cur=root;
TreeNode *parent=root;
while(cur!=NULL){
parent=cur;
if(cur->val>val){
cur=cur->left;
}else{
cur=cur->right;
}
}
TreeNode *node= new TreeNode(val);
if(valval) parent->left=node;
else parent->right =node;
return root;

}

};
题目450
class Solution {
public:
TreeNode* deleteNode(TreeNode* root, int key) {
if(rootnullptr) return root;
if(root->val
key){
if(root->right==nullptr){
return root->left;
}
TreeNode *cur=root->right;
while(cur->left){
cur=cur->left;
}
swap(root->val,cur->val);
}
root->left=deleteNode(root->left,key);
root->right=deleteNode(root->right,key);
return root;

}

};

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值