- 浏览: 137476 次
文章分类
- 全部博客 (189)
- Tree (14)
- Dynamic Programming (34)
- Array (20)
- Search (1)
- Hash (12)
- Backtracking (22)
- Divide and Conque (8)
- Greedy (6)
- Stack (12)
- software (0)
- List (7)
- Math (22)
- Two pointers (16)
- String (20)
- Linux (1)
- Sliding Window (4)
- Finite State Machine (1)
- Breadth-first Search (7)
- Graph (4)
- DFS (6)
- BFS (3)
- Sort (9)
- 基础概念 (2)
- 沟通表达 (0)
- Heap (2)
- Binary Search (15)
- 小结 (1)
- Bit Manipulation (8)
- Union Find (4)
- Topological Sort (1)
- PriorityQueue (1)
- Design Pattern (1)
- Design (1)
- Iterator (1)
- Queue (1)
最新评论
-
likesky3:
看了数据结构书得知并不是迭代和递归的区别,yb君的写法的效果是 ...
Leetcode - Graph Valid Tree -
likesky3:
迭代和递归的区别吧~
Leetcode - Graph Valid Tree -
qb_2008:
还有一种find写法:int find(int p) { i ...
Leetcode - Graph Valid Tree -
qb_2008:
要看懂这些技巧的代码确实比较困难。我是这么看懂的:1. 明白这 ...
Leetcode - Single Num II -
qb_2008:
public int singleNumber2(int[] ...
Leetcode - Single Num II
mplement a basic calculator to evaluate a simple expression string.
The expression string contains only non-negative integers, +, -, *, / operators and empty spaces . The integer division should truncate toward zero.
You may assume that the given expression is always valid.
Some examples:
"3+2*2" = 7
" 3/2 " = 1
" 3+5 / 2 " = 5
Note: Do not use the eval built-in library function.
[分析]
思路1: 将输入先转换为逆波兰表达式,然后计算逆波兰表达式。该类型题目标准解法。
思路2:参考https://leetcode.com/discuss/41902/share-my-java-solution
特别注意代码中的这个条件:if (!Character.isDigit(c) && c != ' ' || i == len - 1)
算法的思路是先解析一个新的运算数,然后判断其前面的运算符,若是乘除则立即算出结果放入栈中,若是正负号则与当前数字结合加入栈中,最后栈中数累加即为结果。
The expression string contains only non-negative integers, +, -, *, / operators and empty spaces . The integer division should truncate toward zero.
You may assume that the given expression is always valid.
Some examples:
"3+2*2" = 7
" 3/2 " = 1
" 3+5 / 2 " = 5
Note: Do not use the eval built-in library function.
[分析]
思路1: 将输入先转换为逆波兰表达式,然后计算逆波兰表达式。该类型题目标准解法。
思路2:参考https://leetcode.com/discuss/41902/share-my-java-solution
特别注意代码中的这个条件:if (!Character.isDigit(c) && c != ' ' || i == len - 1)
算法的思路是先解析一个新的运算数,然后判断其前面的运算符,若是乘除则立即算出结果放入栈中,若是正负号则与当前数字结合加入栈中,最后栈中数累加即为结果。
public class Solution { // Method 2 public int calculate(String s) { if (s == null || s.length() == 0) return 0; List<String> revPolish = reversePolish(s); return evalRPN(revPolish); } public List<String> reversePolish(String s) { List<String> tokens = new ArrayList<String>(); LinkedList<Character> signs = new LinkedList<Character>(); for (int i = 0; i < s.length(); i++) { int j = i; int num = 0; while (i < s.length() && '0' <= s.charAt(i) && s.charAt(i) <= '9') { num = num * 10 + s.charAt(i) - '0'; i++; } if (j < i) tokens.add(String.valueOf(num)); if (i == s.length()) break; char c = s.charAt(i); if (c == '+' || c == '-') { while (!signs.isEmpty()) { tokens.add(String.valueOf(signs.pop())); } signs.push(c); } else if (c == '*' || c == '/') { while (!signs.isEmpty() && (signs.peek() == '/' || signs.peek() == '*')) { tokens.add(String.valueOf(signs.pop())); } signs.push(c); } } while (!signs.isEmpty()) tokens.add(String.valueOf(signs.pop())); return tokens; } public int evalRPN(List<String> tokens) { LinkedList<Integer> nums = new LinkedList<Integer>(); for (int i = 0; i < tokens.size(); i++) { String curr = tokens.get(i); if (curr.equals("+")) { int num2 = nums.pop(), num1 = nums.pop(); nums.push(num1 + num2); } else if (curr.equals("-")) { int num2 = nums.pop(), num1 = nums.pop(); nums.push(num1 - num2); } else if (curr.equals("*")) { int num2 = nums.pop(), num1 = nums.pop(); nums.push(num1 * num2); } else if (curr.equals("/")) { int num2 = nums.pop(), num1 = nums.pop(); nums.push(num1 / num2); } else { nums.push(Integer.parseInt(curr)); } } return nums.pop(); } // Method 1 public int calculate1(String s) { if (s == null) return 0; LinkedList<Integer> stack = new LinkedList<Integer>(); char sign = '+'; int num = 0; int len = s.length(); for (int i = 0; i < len; i++) { char c = s.charAt(i); if (Character.isDigit(c)) num = num * 10 + c - '0'; if (!Character.isDigit(c) && c != ' ' || i == len - 1) { 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); sign = c; num = 0; } } int res = 0; while (!stack.isEmpty()) res += stack.pop(); return res; } }
发表评论
-
Leetcode - Closest Binary Search Tree Value II
2015-09-13 14:16 788[分析] 思路1:遍历所有节点找到和 target最接近的 k ... -
Leetcode - Integer to English Words
2015-09-04 20:53 1104[分析] 这题通过率之所以非常低是因为有很多corner ca ... -
Leetcode - Strobogrammatic Number III
2015-09-03 16:45 2179A strobogrammatic number is a n ... -
Leetcode - Closest Binary Search Tree Value II
2015-09-01 09:50 3183Given a non-empty binary search ... -
Leetcode - Binary Tree Postorder
2015-08-29 21:07 541[分析] 迭代实现后序遍历比迭代实现先序和中序都要稍微复杂,对 ... -
Leetcode - Verify Preorder Sequence in Binary Search Tree
2015-08-29 16:46 3032[分析] 思路1:暴力法,遍历当前待检查数组,找到第一个大于数 ... -
Leetcode - Min Stack
2015-08-29 11:20 554[分析] 这题属于简单题 ... -
Leetcode - Factorial Trailing Zeroes
2015-08-25 09:00 428[思路] 数乘积结果的后缀0,其实就是数结果中有多少个因子10 ... -
Leetcode - Ugly Number II
2015-08-24 22:54 1162[分析] 暴力的办法就是从1开始检查每个数是否是丑数,发现丑数 ... -
Leetcode - Excel Sheet Column Title
2015-08-24 10:24 639[分析] 十进制转26进制,需要注意的是26进制是以1为最小数 ... -
Leetcode - Max Points on a Line
2015-08-23 15:30 722[分析] 两条直线若包含一个公共点且斜率相同,则为同一条直线。 ... -
Leetcode - Fraction to Recurring Decimal
2015-08-23 10:05 467[分析] 处理int型整数运算时,为避免溢出,省事的做法就是内 ... -
Leetcode - Count Primes
2015-08-22 13:42 510[ref] https://en.wikipedia.org/ ... -
Leetcode - Strobogrammatic Number
2015-08-22 10:48 1092A strobogrammatic number is a n ... -
Leetcode - Add Binary
2015-08-21 09:28 468[分析] 从低位往高位逐位相加,就是这么一个简单的题却花了我一 ... -
Leetcode - Rotate Image
2015-08-19 19:51 500[分析] 自己的思路:从外到内一圈圈顺时针旋转90度,坐标映射 ... -
Missing Ranges
2015-08-19 09:48 515[分析] 此题若不考虑极大值极小值相关的corner case ... -
Leetcode - Bitwise AND of Number Range
2015-08-17 09:41 506Given a range [m, n] where 0 &l ... -
Leetcode - Pow(x, n)
2015-08-11 09:45 463[分析] 数值计算类型题目,二分法或者借助位运算,本题两种方法 ... -
Leetcode - Divide Two Integers
2015-08-11 09:00 447[分析] 不能使用乘、除、取模运算,直接的思路当然是一次减一 ...
相关推荐
c c语言_leetcode题解之0227_basic_calculator_ii
java java_leetcode题解之Basic Calculator II.java
2. leetcode-224-Basic-Calculator.md:这是第224题,基础计算器,要求设计一个程序来解析并执行简单的数学表达式。 3. leetcode-214-Shortest-Palindrome.md:第214题,寻找最短回文串,可能涉及到字符串操作和动态...
c c语言_leetcode题解之0224_basic_calculator
java java_leetcode题解之Basic Calculator.java
在这个场景中,我们关注的是两个与字符串处理相关的LeetCode问题:将整数转化为英文单词(Problem1 - Integer to English Words)以及实现一个基本的计算器(Problem2 - Basic Calculator)。这两个问题都是字符串...
137 | [Single Number II](https://leetcode.com/problems/single-number-ii/) | [C++](./C++/single-number-ii.cpp) [Python](./Python/single-number-ii.py) | _O(n)_ | _O(1)_ | Medium ||| 190 | [Reverse Bits]...
- **Basic Calculator II**:实现一个基本计算器,读取一个表达式并返回计算结果。 本书通过实际编程案例,讲解了各种算法思想和技巧,涵盖了从基础的数据结构(如数组、链表、树)到复杂的问题解决策略(如动态...
本项目“Basic-calculator-interpreter”便是针对这一问题的解决方案,使用Go语言进行编写。 Go语言,又称为Golang,是Google开发的一种静态类型的、编译型的、并发型且具有垃圾回收功能的编程语言。其简洁的语法和...
* Basic Calculator II:给定一个字符串,返回其计算结果。这个题目需要使用数学的思想,将字符串分解成更小的子字符串,并计算其结果。 LeetCode 中有很多关于数组、链表、树、动态规划、回溯算法、贪心算法、数学...
LeetCode ### LeetCode算法 # 标题 解决方案 困难 日期 239 [C ++](./算法/滑动窗口最大值/Source.cpp) 难的 2015年8月5日 ...[C ++](../ Algorithms /使用... [C ++](./ Algorithms / Basic Calculator II / Sour
- **基本计算器II(Basic Calculator II)**: 给定一个字符串表达式,实现一个基本计算器来计算并返回结果。 以上总结仅为部分知识点的简述,对于每一个具体的算法问题,都有其独特的解决思路和技巧,建议深入研究每...
leetcode添加元素使和等于 本项目为Njueers所共享 仓库内容主要为平时刷题的submit、遇到的一些经典题解、coding时所作的笔记等 Basic Knowledge文件夹下为一些基础但相对重要的C++知识点/笔记 Cpp文件夹下主要为...