赞
踩
第一次
package com.tmo.stack; /** * * @author tmo * 思路: * 1.需要创建两个栈,一个存放数字的栈numStack,一个存放运算符的栈operStack * 2.需要一个下标index帮助遍历获取str中的符号 * 3.获取到数字,将数字放到数字栈中 * 4.获取到运算符,判断符号栈中是否为空,为空则直接放到符号栈中 * 5.符号栈中不为空,判断获取到的符号与符号栈中top指向的符号的优先级, * 5.1如果获取的操作符的优先级小于符号栈中的优先级,从数字栈中取出两个数字与符号栈中 * 的操作符进行运算,将运算结果得到的数放入数字栈,将获取到的操作符放到符号栈( * 此处相当于将获取的符号与符号栈中top指向的符号替换了) * 5.2如果获取的操作符的优先级大于符号栈中的优先级,直接将获取到的符号存入符号栈 * 6.扫描完毕后将数字栈中的数字和符号栈中的符号按顺序取出进行运算 * 7.当数字栈中只有一个数字时,这个数字就是最终的运算结果 */ public class Calculator { public static void main(String[] args) { // TODO Auto-generated method stub String str = "5+2*6-4"; //测试 ArrayStack2 numStack = new ArrayStack2(10); ArrayStack2 operStack = new ArrayStack2(10); //定义需要的变量 int index = 0;//辅助扫描的位置 int num1 = 0; //运算数字1 int num2 = 0; //运算数字2 int oper = 0; // 保存操作符 int res = 0; //保存运算结果 char ch = ' '; //保存扫描到的结果 while (true) { //扫描 ch = str.substring(index, index+1).charAt(0); if (operStack.isOper(ch)) { //是运算符 //判断符号栈是否为空 if (operStack.isEmpty()) { //符号栈为空 operStack.push(ch); }else { //符号栈不为空 //判断优先级 if (operStack.priority(ch) <= operStack.priority(operStack.getTop())) { //符号栈中的优先级大于扫描到的运算符 //从符号栈中取出运算符,从数字栈中取出两个数字进行计算 num1 = numStack.pop(); num2 = numStack.pop(); oper = operStack.pop(); res = operStack.cal(num1, num2, oper); numStack.push(res); operStack.push(ch); }else { //符号栈中的优先级小于扫描到的运算符 //直接存入符号栈 operStack.push(ch); } } }else { //是数字 numStack.push(ch - 48); } index++; if (index >= str.length()) { //扫描结束 break; } } //当扫描结束,需要将剩余的内容进行运算 while (true) { //判断是否运算结束 if (operStack.isEmpty()) { //符号栈中为空 说明运算结束 break; } num1 = numStack.pop(); num2 = numStack.pop(); oper = operStack.pop(); res = operStack.cal(num1, num2, oper); numStack.push(res); } //计算结束后,数字栈中存放的就是最终的结果 int res2 = numStack.pop(); System.out.printf("%s的结果为%d",str,res2); } } //数组模拟栈 class ArrayStack2{ //栈的最大长度 public int maxSize; //栈 public int[] stack; //表示栈顶元素 初始化为-1,表示栈空 public int top = -1; //构造函数 生成栈 public ArrayStack2(int maxSize) { this.maxSize = maxSize; stack = new int[this.maxSize]; } //判断栈满 public boolean isFull() { return top == maxSize - 1; } //判断栈空 public boolean isEmpty() { return top == -1; } //入栈 public void push(int num) { //判断是否栈满 if (isFull()) { System.out.println("栈满"); return; } //入栈 //top后移 top++; stack[top] = num; } //出栈 public int pop() { //判断是否栈空 if (isEmpty()) { throw new RuntimeException("栈空"); } int val = stack[top]; top-- ; return val; } //遍历栈 public void list() { if (isEmpty()) { //栈空 System.out.println("栈空"); return; } for (int i = top; i >= 0; i--) { System.out.printf("stack[%d]=%d\n",i,stack[i]); } } //返回运算符的优先级 //自定义规则 返回的数字的越大优先级越高 public int priority(int ch) { if (ch == '*' || ch == '/') { return 1; }else if (ch == '+' || ch =='-') { return 0; }else { return -1; } } //判断是否为操作符 public boolean isOper(int ch) { return ch == '*' || ch == '/' || ch == '+' || ch == '-'; } //运算 public int cal(int num1 , int num2 , int oper) { //创建一个变量,用于存放返回值 int res = 0; switch (oper) { case '+': res = num1 + num2; break; case '-': res = num2 - num1; break; case '*': res = num1 * num2; break; case '/': res = num2 / num1; break; default: break; } return res; } //获取top的数 public int getTop() { return stack[top]; } }
当运行 5+2*6-4 时,结果为13 正确 ;当运行 50 + 2 X 6 - 4 时,结果不正确,只能计算一个字符的结果,当计算多位字符的结果时,结果不正确。
因为我们在扫描到一个字符时,直接存入了数字栈。
扫描到一个数字时,判断下一个是不是数字,如果是数字,将其取出并进行拼接
然后将拼接的数字入数字栈
package com.tmo.stack; /** * * @author tmo * 思路: * 1.需要创建两个栈,一个存放数字的栈numStack,一个存放运算符的栈operStack * 2.需要一个下标index帮助遍历获取str中的符号 * 3.获取到数字,将数字放到数字栈中 * 4.获取到运算符,判断符号栈中是否为空,为空则直接放到符号栈中 * 5.符号栈中不为空,判断获取到的符号与符号栈中top指向的符号的优先级, * 5.1如果获取的操作符的优先级小于符号栈中的优先级,从数字栈中取出两个数字与符号栈中 * 的操作符进行运算,将运算结果得到的数放入数字栈,将获取到的操作符放到符号栈( * 此处相当于将获取的符号与符号栈中top指向的符号替换了) * 5.2如果获取的操作符的优先级大于符号栈中的优先级,直接将获取到的符号存入符号栈 * 6.扫描完毕后将数字栈中的数字和符号栈中的符号按顺序取出进行运算 * 7.当数字栈中只有一个数字时,这个数字就是最终的运算结果 */ public class Calculator { public static void main(String[] args) { // TODO Auto-generated method stub String str = "50+2*6-4"; //测试 ArrayStack2 numStack = new ArrayStack2(10); ArrayStack2 operStack = new ArrayStack2(10); //定义需要的变量 int index = 0;//辅助扫描的位置 int num1 = 0; //运算数字1 int num2 = 0; //运算数字2 int oper = 0; // 保存操作符 int res = 0; //保存运算结果 char ch = ' '; //保存扫描到的结果 String keepNum = ""; //保存拼接后的数字 while (true) { //扫描 ch = str.substring(index, index+1).charAt(0); if (operStack.isOper(ch)) { //是运算符 //判断符号栈是否为空 if (operStack.isEmpty()) { //符号栈为空 operStack.push(ch); }else { //符号栈不为空 //判断优先级 if (operStack.priority(ch) <= operStack.priority(operStack.getTop())) { //符号栈中的优先级大于扫描到的运算符 //从符号栈中取出运算符,从数字栈中取出两个数字进行计算 num1 = numStack.pop(); num2 = numStack.pop(); oper = operStack.pop(); res = operStack.cal(num1, num2, oper); numStack.push(res); operStack.push(ch); }else { //符号栈中的优先级小于扫描到的运算符 //直接存入符号栈 operStack.push(ch); } } }else { //是数字 //numStack.push(ch - 48); //拼接 keepNum += ch; //判断是否是最后一个字符 if (index == str.length() -1) { numStack.push(Integer.parseInt(keepNum)); }else { //判断下一位是否是数字 if (operStack.isOper(str.substring(index+1, index+2).charAt(0))) { //不是数字 numStack.push(Integer.parseInt(keepNum)); //注意:运算完后要将keepNum设为空 keepNum = ""; } } } index++; if (index >= str.length()) { //扫描结束 break; } } //当扫描结束,需要将剩余的内容进行运算 while (true) { //判断是否运算结束 if (operStack.isEmpty()) { //符号栈中为空 说明运算结束 break; } num1 = numStack.pop(); num2 = numStack.pop(); oper = operStack.pop(); res = operStack.cal(num1, num2, oper); numStack.push(res); } //计算结束后,数字栈中存放的就是最终的结果 int res2 = numStack.pop(); System.out.printf("%s的结果为%d",str,res2); } } //数组模拟栈 class ArrayStack2{ //栈的最大长度 public int maxSize; //栈 public int[] stack; //表示栈顶元素 初始化为-1,表示栈空 public int top = -1; //构造函数 生成栈 public ArrayStack2(int maxSize) { this.maxSize = maxSize; stack = new int[this.maxSize]; } //判断栈满 public boolean isFull() { return top == maxSize - 1; } //判断栈空 public boolean isEmpty() { return top == -1; } //入栈 public void push(int num) { //判断是否栈满 if (isFull()) { System.out.println("栈满"); return; } //入栈 //top后移 top++; stack[top] = num; } //出栈 public int pop() { //判断是否栈空 if (isEmpty()) { throw new RuntimeException("栈空"); } int val = stack[top]; top-- ; return val; } //遍历栈 public void list() { if (isEmpty()) { //栈空 System.out.println("栈空"); return; } for (int i = top; i >= 0; i--) { System.out.printf("stack[%d]=%d\n",i,stack[i]); } } //返回运算符的优先级 //自定义规则 返回的数字的越大优先级越高 public int priority(int ch) { if (ch == '*' || ch == '/') { return 1; }else if (ch == '+' || ch =='-') { return 0; }else { return -1; } } //判断是否为操作符 public boolean isOper(int ch) { return ch == '*' || ch == '/' || ch == '+' || ch == '-'; } //运算 public int cal(int num1 , int num2 , int oper) { //创建一个变量,用于存放返回值 int res = 0; switch (oper) { case '+': res = num1 + num2; break; case '-': res = num2 - num1; break; case '*': res = num1 * num2; break; case '/': res = num2 / num1; break; default: break; } return res; } //获取top的数 public int getTop() { return stack[top]; } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。