C++实现后缀表达式求值

这篇博客详细介绍了如何用C++编程实现后缀表达式(逆波兰表示法)的求值过程,包括不使用<stack>头文件和使用<stack>头文件的两种方法,并展示了运行结果。
摘要由CSDN通过智能技术生成

输入要求

 *      用栈保存操作数
 *      前缀:Prefix Notation(Polish notation)
 *      中缀:Infix Notation
 *      后缀:Postfix Notation(Reverse Polish notation)
 *      操作数:A-Z, a-z, 0-9
 *      运算符:+, -, *, /, (, )
 *      Postfix:输入字符串
 *      StackOperand:操作数栈
样例输入
	中缀表达式为:((5/(7-(1+1)))*3)-(2+(1+1))
	后缀表达式为:5711+-/3*211++-
	计算结果应为:-1
此程序只能接收10以下数字的运算
暂时没想到怎么简单的处理例如15这样的操作数,被表示为后缀表达式后,判断出它是15,还是15

算法代码

ElemType CalculatePostfix(string Postfix)
{
   
    // 初始化操作数栈
    SqStack StackOperand;
    InitStack(StackOperand);
    // 遍历Postfix
    for (int i = 0; i < Postfix.length(); i++) {
   
        string OpSign = JudgeOperation(Postfix[i]);
        // 错误直接退出循环
        if (OpSign == "InvalidInput")
        {
   
            cout << "表达式有误!" << endl;
            break;
        }
        // 遇到操作数,压入栈中,进行下一次扫描,跳过后面的操作
        if (OpSign == "Operand")
        {
   
            ElemType temp = Postfix[i] - '0'; // 把char转 double数字
            Push(StackOperand, temp);
            continue;
        }
        // 遇到运算符
        if (OpSign == "Operator")
        {
   
            // 遇到运算符时,栈空,则表达式有误
            if (StackEmpty(StackOperand))
            {
   
                cout << "表达式有误!" << endl;
                break;
            } else{
   
                // 弹出栈顶两个元素,进行操作
                ElemType RightOperand;   // 先弹栈为右操作数
                Pop(StackOperand, RightOperand);
                ElemType LeftOperand;   // 左操作数
                Pop(StackOperand, LeftOperand);
                ElemType temp = CalculateTwoOperand(LeftOperand, RightOperand, Postfix[i]);
                Push(StackOperand, temp);
            }
        }
    }
    ElemType outcome;
    // 最后结果在栈顶
    Pop(StackOperand, outcome);
    return outcome;
}
ElemType CalculateTwoOperand(ElemType Left, ElemType Right, char Operator)
{
   
    ElemType Temp;
    switch (Operator) {
   
        case '+':
            Temp = Left 
思路: 1. 从左到右扫描表达式,若遇到数字则入栈; 2. 若遇到运算符,则弹出栈顶的两个元素进行计算,计算结果入栈; 3. 最终栈中只剩下一个元素,即为表达式的值。 具体实现: 1. 定义一个栈来存储数字; 2. 遍历后缀表达式,遇到数字则入栈; 3. 遇到运算符时,弹出栈顶的两个元素进行计算,将计算结果入栈; 4. 最终栈中只剩下一个元素,即为表达式的值,返回该元素即可。 代码实现: ```c #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #define MAX_SIZE 100 typedef struct stack { int data[MAX_SIZE]; int top; } Stack; void init_stack(Stack* s) { s->top = -1; } int is_empty(Stack* s) { return s->top == -1; } int is_full(Stack* s) { return s->top == MAX_SIZE - 1; } void push(Stack* s, int value) { if (is_full(s)) { printf("Stack is full\n"); return; } s->data[++s->top] = value; } int pop(Stack* s) { if (is_empty(s)) { printf("Stack is empty\n"); return -1; } return s->data[s->top--]; } int peek(Stack* s) { if (is_empty(s)) { printf("Stack is empty\n"); return -1; } return s->data[s->top]; } int evaluate_postfix(char* postfix) { Stack s; init_stack(&s); int len = strlen(postfix); for (int i = 0; i < len; i++) { char c = postfix[i]; if (isdigit(c)) { push(&s, c - '0'); } else { int b = pop(&s); int a = pop(&s); switch (c) { case '+': push(&s, a + b); break; case '-': push(&s, a - b); break; case '*': push(&s, a * b); break; case '/': push(&s, a / b); break; default: printf("Unknown operator: %c\n", c); break; } } } return pop(&s); } int main() { char postfix[] = "34+5*"; int result = evaluate_postfix(postfix); printf("Result: %d\n", result); return 0; } ``` 输出: ``` Result: 35 ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值