资源简介
最后一个测试点没过 实在想不出来哪有问题 欢迎指正。
后缀式转中缀式
【问题描述】
将由数字和四则运算符组成的后缀表达式变换为中缀表达式。输入的后缀表达式包含的运算符不超过15个。要求转换后的中缀表达式中不应出现不必要的括号。例如,整个表达式两端的括号要省略,不影响原计算结果的括号要省略。
【输入形式】
程序从标准输入上读入一行字符串,是一个合法的后缀表达式,数字和运算符之间由空格分隔。其中的数字可以是整数,也可以是带有小数部分的浮点数。
【输出形式】
向标准输出打印结果。 输出只有一行,是转换后的中缀表达式,并且 1. 各分量(包括括号)紧密输出,不使用空格进行分隔
代码片段和文件信息
#include
#include
#include
#include
char buf[10000];
int count = 0;
char c;
union unit{
char *s;
int T;
};
struct term{
int type_a type_b; //左右两项的类型 0:数 1:项
char symbol;
union unit a;
union unit b;
};
int stack_type[50] e = -1;
union unit stack_value[50];
struct term item[100];
int num = 0;
char s[1000];
int getNum()
{
int i = 0;
if (c == ‘-‘||c==‘+‘){
s[i++] = c;
c = buf[++count];
}
do{
s[i++] = c;
c = buf[++count];
} while (isdigit(c) || c == ‘.‘);
s[i] = 0;
stack_type[++e] = 0;
stack_value[e].s = (char*)malloc(strlen(s)+1);
strcpy(stack_value[e].s s);
return 0;
}
void getSymbol()
{
item[num].symbol = c;
item[num].type_a = stack_type[e-1];
item[num].type_b = stac
- 上一篇:最全的GIS图标
- 下一篇:简单模拟超级玛丽奥上下左右移动代码
评论
共有 条评论