二叉树——HDU 1805 后缀表达式转前缀表达式

http://acm.split.hdu.edu.cn/showproblem.php?pid=1805

给你后缀表达式让你输出前缀表达式

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#define maxs 10010
#include <stack>
#include <queue>
#define MME(i,j) memset(i,j,sizoef(i))
using namespace std;
char s[maxs];

struct node
{
    char data;
    node *left,*right;
    node()
    {
        data='\0';
        left=right=NULL;
    }
}root;

void print(node *ss)
{
    char op[maxs];
    char *o=op+10000;
    *o='\0';
    queue<node *> ql;
    ql.push(ss);
    node *temp;
    while(!ql.empty())
    {
        temp=ql.front();
        ql.pop();
        o--;
        *o=temp->data;
        if(temp->left)
            ql.push(temp->left);
        if(temp->right)
            ql.push(temp->right);
    }
    puts(o);
}

int main()
{
    int t,len;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%s",s);
        len=strlen(s);
        node *temp=NULL;
        stack <node*> mystack;
        for(int i=0;i<len;i++)
        {
            if(s[i]>='a')
            {
                temp=new node;
                temp->data=s[i];
                mystack.push(temp);//小写的都入栈,
            }
            else{
                temp = new node;
                temp->data=s[i];
                temp->right=mystack.top();//因为后缀表达式,左右的顺序入栈那么出栈的顺序是右左
                mystack.pop();
                temp->left=mystack.top();
                mystack.pop();
                mystack.push(temp);
            }
        }
        print(mystack.top());
        delete mystack.top();
        mystack.pop();
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值