227. Basic Calculator
Implement a basic calculator to evaluate a simple expression string.
The expression string contains onlynon-negativeintegers,+
,-
,*
,/
operators and empty spaces. The integer division should truncate toward zero.
Example 1:
Example 2:
Example 3:
Note:
You may assume that the given expression is always valid.
Do not use the
eval
built-in library function.
Thoughts: need to look back to know what is the operand value when encountered an operator. Hence need two variable: operator and operand.
With stack: using a stack to keep track of numbers and do the operation based on operators.
Without stack: only add current operand to the accumulative sum when encountered '+' or '-' since '*' and '/' has prioirty
Code: with a stack
Code: without a stack
Last updated
Was this helpful?