首页 > 其他 > 详细

P1305 新二叉树

时间:2021-01-25 09:02:25      阅读:51      评论:0      收藏:0      [点我收藏+]

树的前序遍历,水题~

unordered_map<char,char> l,r,fa;
set<char> node;
int n;

void preorder(char root)
{
    if(root == ‘*‘) return;
    cout<<root;
    preorder(l[root]);
    preorder(r[root]);
}

int main()
{
    cin>>n;

    string s;
    for(int i=0;i<n;i++)
    {
        cin>>s;
        l[s[0]]=s[1];
        r[s[0]]=s[2];
        fa[s[1]]=fa[s[2]]=s[0];
    }

    char root=s[1];//or s[2]
    while(fa.count(root))
        root=fa[root];

    preorder(root);

    //system("pause");
    return 0;
}

P1305 新二叉树

原文:https://www.cnblogs.com/fxh0707/p/14322906.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!