先序 中序 递归建树

TreeNode* Build(string str1,string str2) {
    if(str1.size()==0){
        return NULL;
    }
    char c=str1[0];
    TreeNode* root=new TreeNode(c);
    int p=str2.find(c);
    root->leftchild=Build(str1.substr(1,p),str2.substr(0,p));
    root->rightchild=Build(str1.substr(p+1),str2.substr(p+1));
    return root;
}
全部评论

相关推荐

11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务