树的括号表示法

树的括号表示法:

 先将根结点放入一对圆括号中,然后把它的子树按由左而右的顺序放入括号中,而对子树也采用同样方法处理:同层子树与它的根结点用圆括号括起来,同层子树之间用逗号隔开,最后用闭括号括起来。例如下图可写成如下形式  

(a(b,c,d,e))

            a

       /  |   |   \

      b   c   d     e

现在给定一个多叉树的括号表示法,要求你创建多叉树,并按层序输出。


eg:input:(a(b,c,d,e))

output:abcde

原创代码如下,使用栈存没个根节点

#include <iostream>
#include <cstdio>
#include <queue>
#include <cstring>
#include <stack>
using namespace std;
char  s[1000];
struct node
{
    char data;
    int snum;
    node *son[20];
    node(char d,int n):data(d),snum(n)
    {
        for(int i=0;i<20;i++)
        son[i]=NULL;
    }
};
void lay(node *root)
{
    queue<node *> q;
    q.push(root);
    while(!q.empty())
    {
        node *temp=q.front();
        q.pop();
        cout<<temp->data;
        for(int i=0;i<temp->snum;i++)
        {
            q.push(temp->son[i]);
        }
    }
}
int main()
{
    scanf("%s",s);
    int len=strlen(s);
    stack<node *> st;
    st.push(new node(s[1],0));
    for(int i=3;i<len-2;i++)
    {
        char x=s[i];
        if(x>='a'&&x<='z')
        {
            node *current=st.top();
            current->son[current->snum++]=new node(x,0);
            if(s[i+1]=='(')
                st.push(current->son[current->snum-1]);
        }
        else if(x==')')
        {
            st.pop();
        }
        else
            continue;
    }
    node *root=st.top();
    lay(root);
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值