二叉排序树 建树

TreeNode* Insert(TreeNode* root,int x) {
    if(root==NULL) {
        root=new TreeNode(x);
    }
    if(x<root->data) {
        root->leftchild=Insert(root->leftchild,x);
    } else if(x>root->data) {
        root->rightchild=Insert(root->rightchild,x);
    }
    return root;
}
全部评论
我觉得二叉树是高频的机试题
点赞 回复 分享
发布于 2022-10-13 23:13 山西

相关推荐

贺兰星辰:不要漏个人信息,除了简历模板不太好以外你这个个人简介是不是太夸大了...
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务