题解 | #二叉树遍历#

二叉树遍历

http://www.nowcoder.com/practice/6e732a9632bc4d12b442469aed7fe9ce

#include<iostream>
using namespace std;
struct btree{
    char data;
    btree* leftchild;
    btree* rightchild;
    btree(){}
    btree(char c):data(c),leftchild(nullptr),rightchild(nullptr){}
};
btree* build(string preorder,string inorder){
    //创建
    if(preorder.size()==0){
        return nullptr;
    }
    char c=preorder[0];
    btree* root=new btree(c);
    int position=inorder.find(c);
    root->leftchild=build(preorder.substr(1,position), inorder.substr(0,position));
    root->rightchild=build(preorder.substr(position+1), inorder.substr(position+1));
    return root;
}
void postorder(btree* root){
    //后序遍历
    if(root==nullptr){
        return;
    }
    postorder(root->leftchild);
    postorder(root->rightchild);
    cout<<root->data;
}
int main(){
    string str1,str2;
    while(cin>>str1>>str2){
        btree* root=build(str1, str2);
        postorder(root);
        cout<<endl;
    }
    return 0;
}
全部评论

相关推荐

2025-12-20 13:19
已编辑
曲阜师范大学 Java
点赞 评论 收藏
分享
2025-12-19 19:02
西安交通大学 Java
程序员牛肉:双九,而且还是西交这种比较好的985九没必要再投日常了。你投中小厂,人家会觉得你学历这么顶还面试肯定是海投的,过了你也不去。所以不约你了。 直接准备暑期实习就好,现在你可以面试。但是目的不再是去日常实习了,而是熟悉面试节奏。 后续把精力放到八股,算法和AI知识上。抽空把自己这两个项目换了,怎么选项目可以看看我主页写的文章。 你学历不错的,不要焦虑
那些拿到大厂offer的...
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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