Leetcode701. 二叉搜索树中的插入操作-代码随想录

文章介绍了在C++中实现二叉搜索树(BST)的插入操作,包括首刷版本的递归方法和二刷版本的迭代方法,以及如何进行调试。
摘要由CSDN通过智能技术生成

目录

题目:

代码(首刷自解 2024年1月31日):

代码(二刷自解  debug on GPT 2024年5月19日)


题目:


代码(首刷自解 2024年1月31日):

class Solution {
public:
    TreeNode* insertIntoBST(TreeNode* root, int val) {
        TreeNode* node = new TreeNode(val);
        if (!root) return node;
        TreeNode* cur = root;
        while (true) {
            if (val < cur->val) {
                if (cur->left)  cur = cur->left;
                else {
                    cur->left = node;
                    break;
                }
            }
            else {
                if (cur->right) cur = cur->right;
                else {
                    cur->right = node;
                    break;
                }
            }
        }
        return root;
    }
};

代码(二刷自解  debug on GPT 2024年5月19日)

class Solution {
public:
    // 二叉搜索
    TreeNode* insertIntoBST(TreeNode* root, int val) {
        if (!root) return new TreeNode(val);
        TreeNode* cur = root;
        TreeNode* pre = root;
        while(cur) {
            pre = cur;
            if (val < cur->val) {
                cur = cur->left;
            } else if (val > cur->val) {
                cur = cur->right;
            }
        }
        TreeNode* node = new TreeNode(val);
        if (val < pre->val) pre->left = node;
        else pre->right = node;
        return root;
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值