关于使用栈实现的普通计算器我之前已经实践过了,但是使用的是普通的中缀算术表达式的方式实现的,感兴趣可以看这篇文章:
https://juejin.im/post/5d72494de51d4561ad65492d
但是一般在计算机的本地存储中,如果是使用中缀表达式的话,对于计算机来说,是很大的计算和存储负担,因此在计算机的设计中,基本是将来人来说简单容易理解的中缀表达式转化为后缀表达式来存储,也叫做逆波兰表达式。使用后缀表达式的方式能够计算出结果的计算器,就是逆波兰计算器。
题目:
输入一个后缀表达式的,使用栈(Stack),计算其结果。能够支持小括号和多位整数(暂不包括小数)
见代码:
/**
* @author 曾鑫曜(xinyao.zeng @ *******)
* @version 1.0
* @description:
* @since 2019/9/17 16:31
*/
public class PolandNotation {
//先定义给逆波兰表达式
//(30+4)×5-6 => 30 4 + 5 × 6 - => 164
// 4 * 5 - 8 + 60 + 8 / 2 => 4 5 * 8 - 60 + 8 2 / +
//测试
//说明为了方便,逆波兰表达式 的数字和符号使用空格隔开
public static void main(String[] args) {
//String suffixExpression = "30 4 + 5 * 6 -";
// 76
/* String suffixExpression = "4 5 * 8 - 60 + 8 2 / +";
//思路
//1. 先将 "3 4 + 5 × 6 - " => 放到ArrayList中
//2. 将 ArrayList 传递给一个方法,遍历 ArrayList 配合栈 完成计算
List list = getListString(suffixExpression);
System.out.println("rpnList=" + list);
int res = calculate(list);
System.out.println("计算的结果是=" + res);*/
String expression = "1+((12+32)*4)-5";
List infixExpressionList = toInfixExpressionList(expression);
// ArrayList [1,+,(,(,2,+,3,),*,4,),-,5]
System.out.println("中缀表达式对应的List=" + infixExpressionList);
List suffixExpreesionList = parseSuffixExpreesionList(infixExpressionList);
System.out.println("后缀表达式对应的List" + suffixExpreesionList); //ArrayList [1,2,3,+,4,*,+,5,–]
System.out.printf("expression=%d", calculate(suffixExpreesionList)); // ?
}
//方法:将 中缀表达式转成对应的List
// s="1+((2+3)×4)-5";
public static List toInfixExpressionList(String s) {
//定义一个List,存放中缀表达式 对应的内容
List ls = new ArrayList();
int i = 0; //这时是一个指针,用于遍历 中缀表达式字符串
String str; // 对多位数的拼接
char c; // 每遍历到一个字符,就放入到c
do {
//如果c是一个非数字,我需要加入到ls
if((c=s.charAt(i)) < 48 || (c=s.charAt(i)) > 57) {
ls.add("" + c);
i++; //i需要后移
} else { //如果是一个数,需要考虑多位数
str = ""; //先将str 置成"" '0'[48]->'9'[57]
while(i < s.length() && (c=s.charAt(i)) >= 48 && (c=s.charAt(i)) <= 57) {
str += c;//拼接
i++;
}
ls.add(str);
}
}while(i < s.length());
return ls;//返回
}
//即 ArrayList [1,+,(,(,2,+,3,),*,4,),-,5] =》 ArrayList [1,2,3,+,4,*,+,5,–]
//方法:将得到的中缀表达式对应的List => 后缀表达式对应的List
public static List parseSuffixExpreesionList(List ls) {
// 定义两个栈
Stack s1 = new Stack(); // 符号栈
//说明:因为s2 这个栈,在整个转换过程中,没有pop操作,而且后面我们还需要逆序输出
//因此比较麻烦,这里我们就不用 Stack 直接使用 List s2
//Stack s2 = new Stack(); // 储存中间结果的栈s2
List s2 = new ArrayList(); // 储存中间结果的Lists2
for(String item: ls){
//如果是数字直接存入栈s2
if(item.matches("\\d+")){
s2.add(item);
} else if (item.equals("(")){
s1.push(item);
} else if(item.equals(")")){
while(!s1.peek().equals("(")){
s2.add(s1.pop());
}
s1.pop();
} else {
while(s1.size() != 0 && Operation.getValue(s1.peek()) >= Operation.getValue(item)){
s2.add(s1.pop());
}
s1.push(item);
}
}
while(s1.size()!=0){
s2.add(s1.pop());
}
return s2;
}
/**
* 将一个逆波兰表达式, 依次将数据和运算符 放入到 ArrayList中
* @param suffixExpression
* @return list
*/
public static List getListString(String suffixExpression) {
String[] strings = suffixExpression.split(" ");
ArrayList list = Lists.newArrayList(strings);
return list;
}
//编写一个类 Operation 可以返回一个运算符 对应的优先级
static class Operation {
private static int ADD = 1;
private static int SUB = 1;
private static int MUL = 2;
private static int DIV = 2;
//写一个方法,返回对应的优先级数字
public static int getValue(String operation) {
int result = 0;
switch (operation) {
case "+":
result = ADD;
break;
case "-":
result = SUB;
break;
case "*":
result = MUL;
break;
case "/":
result = DIV;
break;
default:
System.out.println("不存在该运算符" + operation);
break;
}
return result;
}
}
/**
* 完成对逆波兰表达式的运算
* 1)从左至右扫描,将3和4压入堆栈;
2)遇到+运算符,因此弹出4和3(4为栈顶元素,3为次顶元素),计算出3+4的值,得7,再将7入栈;
3)将5入栈;
4)接下来是×运算符,因此弹出5和7,计算出7×5=35,将35入栈;
5)将6入栈;
6)最后是-运算符,计算出35-6的值,即29,由此得出最终结果
*/
public static int calculate(List list) {
//创建栈,只需要一个
Stack stack = new Stack();
//遍历
list.stream().forEach(x -> {
//匹配的是多位数
if(x.matches("\\d+")){
stack.push(x);
} else {
//pop出两位数
int num2 = Integer.parseInt(stack.pop());
int num1 = Integer.parseInt(stack.pop());
int res = 0;
switch (x) {
case "+":
res = num1 + num2;
break;
case "-":
res = num1-num2;
break;
case "*":
res = num1 * num2;
break;
case "/":
res = num1 / num2;
break;
default:
throw new RuntimeException("运算符有误");
}
stack.push("" + res);
}
});
int result = Integer.parseInt(stack.pop());
return result;
}
}
解题思路如下: