224. 基本计算器
2021/12/20 23:49:51
本文主要是介绍224. 基本计算器,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
给你一个字符串表达式 s ,请你实现一个基本计算器来计算并返回它的值。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/basic-calculator
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
import java.util.Scanner; import java.util.Stack; class Solution { private void pushStack(Stack<Integer> stack, char sign, int num) { if (sign == '+') { stack.push(num); } else if (sign == '-') { stack.push(-num); } else if (sign == '*') { stack.push(stack.pop() * num); } else if (sign == '/') { stack.push(stack.pop() / num); } } private int[] solve(String str, int index) { Stack<Integer> stack = new Stack<>(); int num = 0; char sign = '+'; while (index < str.length() && str.charAt(index) != ')') { if (Character.isDigit(str.charAt(index))) { num = num * 10 + str.charAt(index++) - '0'; } else if (str.charAt(index) == '(') { int[] next = solve(str, index + 1); index = next[0] + 1; num = next[1]; } else if (str.charAt(index) == ' ') { index++; } else { pushStack(stack, sign, num); num = 0; sign = str.charAt(index++); } } pushStack(stack, sign, num); int sum = stack.stream().reduce(0, Integer::sum).intValue(); return new int[]{index, sum}; } public int calculate(String s) { if (s == null || s.length() == 0) { return 0; } return solve(s, 0)[1]; } public static void main(String[] args) { Scanner in = new Scanner(System.in); while (in.hasNext()) { System.out.println(new Solution().calculate(in.nextLine())); } } }
这篇关于224. 基本计算器的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-102025 蛇年,J 人直播带货内容审核团队必备的办公软件有哪 6 款?
- 2025-01-10高效运营背后的支柱:文档管理优化指南
- 2025-01-10年末压力山大?试试优化你的文档管理
- 2025-01-10跨部门协作中的进度追踪重要性解析
- 2025-01-10总结 JavaScript 中的变体函数调用方式
- 2025-01-10HR团队如何通过数据驱动提升管理效率?6个策略
- 2025-01-10WBS实战指南:如何一步步构建高效项目管理框架?
- 2025-01-10实现精准执行:团队协作新方法
- 2025-01-10如何使用工具提升活动策划团队的工作效率?几个必备工具推荐
- 2025-01-10WiX 标签使用介绍:打造专业安装程序的利器