逆波兰计算器

逆波兰表达式计算
public class PolandNotation {
public static void main(String[] args) {
//逆波兰表达式
//(3+4)*5-6 -》 3 4 + 5 * 6 -
//为了方便,逆波兰表达式的数字和符号使用空格隔开
String suffixExpression=“3 4 + 5 * 6 -”;
//1.先将“3 4 + 5 * 6 -”放到ArrayList中
//2.将ArrayList传递给一个方法,遍历ArrayList配合栈完成计算

    List<String> rpnList =getList(suffixExpression);
    System.out.println(rpnList);
    int res =claculate(rpnList);
    System.out.println(res);
}

public static List<String> getList(String suffixExpression){
    //将suffixExpression分割
    String[] split = suffixExpression.split(" ");
    List<String> list = new ArrayList<String>();
    for (String ele: split){
        list.add(ele);
    }
    return list;
}
//完成对逆波兰表达式的运算
//1.从左到右扫描,将3和4压入堆栈;
//2.遇到+运算符,弹出4和3,计算3+4的值,得7,再将7压入栈
//3.将5入栈
//4。接下来是*运算符,弹出5,7,计算7*5=35,将35入栈
//5.将6入栈
//6.最后是-运算符,计算出35-6得值得29
public static int claculate(List<String> ls){
    Stack<String> st = new Stack<String>();

    for (String item:ls){
        if (item.matches("\\d+")){//匹配多位数
            //入栈
            st.push(item);
        }else {
            int num2 =Integer.parseInt(st.pop());
            int num1 =Integer.parseInt(st.pop());
            int res =0;
            if (item.equals("+")){
                res=num1+num2;
            }else if (item.equals("-")){
                res=num1-num2;
            }else if ((item.equals("*"))){
                res=num1*num2;
            }else if (item.equals("/")){
                res=num1/num2;
            }else {
                throw new RuntimeException("运算符有误");
            }
            st.push(res+"");
        }

    }
    return Integer.parseInt(st.pop());

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值