经典数据结构-栈计算逆波兰表达式

用栈计算逆波兰表达式的基本思路是:按顺序遍历整个表达式,

若遇到操作数(假设都是二元运算符)则入栈;若遇到操作符(+ - * /)

连续弹出两个操作数并执行相应的运算,然后将其运算结果入栈。

重复以上过程,直到表达式遍历完,栈内只剩下一个操作数时,那

就是最终的运算结果,弹出打印即可。

java 复制代码
import java.util.Stack;

public class Solution17 {
    public static int evaluateRPN(String[] tokens){
        Stack<Integer> stack = new Stack<>();
        for(String token : tokens){
            if(isOperator(token)){
                int b=stack.pop();
                int a=stack.pop();
                int result=applyOpeartor(token,a,b);
                stack.push(result);
            }
            else{
                stack.push(Integer.parseInt(token));
            }
        }
        return stack.pop();
    }

    private static boolean isOperator(String token){
        return "+-*/".contains(token);
    }
    private static int applyOpeartor(String operator, int a, int b){
        switch (operator){
            case "+":
                return a+b;
            case "-":
                return a-b;
            case "*":
                return a*b;
            case "/":
                return a/b;
            default:
                throw new IllegalArgumentException("Invalid operator: " + operator);
        }
    }
    public static void main(String[] args) {
        String[] tokens = {"8", "2", "+", "2","*"};
        int result = evaluateRPN(tokens);
        System.out.println(result);
    }
}
相关推荐
Heisenberg~29 分钟前
详解八大排序(五)------(计数排序,时间复杂度)
c语言·数据结构·排序算法
Hera_Yc.H12 小时前
数据结构之一:复杂度
数据结构
肥猪猪爸13 小时前
使用卡尔曼滤波器估计pybullet中的机器人位置
数据结构·人工智能·python·算法·机器人·卡尔曼滤波·pybullet
linux_carlos13 小时前
环形缓冲区
数据结构
readmancynn13 小时前
二分基本实现
数据结构·算法
Bucai_不才13 小时前
【数据结构】树——链式存储二叉树的基础
数据结构·二叉树
盼海13 小时前
排序算法(四)--快速排序
数据结构·算法·排序算法
一直学习永不止步13 小时前
LeetCode题练习与总结:最长回文串--409
java·数据结构·算法·leetcode·字符串·贪心·哈希表
珹洺14 小时前
C语言数据结构——详细讲解 双链表
c语言·开发语言·网络·数据结构·c++·算法·leetcode
几窗花鸢15 小时前
力扣面试经典 150(下)
数据结构·c++·算法·leetcode