先序 中序 递归建树

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;
}
全部评论

相关推荐

最喜欢秋天的火龙果很...:第一份工作一定要往大的去,工资低点没事。后面换工作会更好找,即使你去小公司,你也不可能不会换工作的。所以找大的去
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务