Basic Calculator II Problem


Description

LeetCode Problem 227.

Given a string s which represents an expression, evaluate this expression and return its value.

The integer division should truncate toward zero.

You may assume that the given expression is always valid. All intermediate results will be in the range of [-2^31, 2^31 - 1].

Note: You are not allowed to use any built-in function which evaluates strings as mathematical expressions, such as eval().

Example 1:

1
2
Input: s = "3+2*2"
Output: 7

Example 2:

1
2
Input: s = " 3/2 "
Output: 1

Example 3:

1
2
Input: s = " 3+5 / 2 "
Output: 5

Constraints:

  • 1 <= s.length <= 3 * 10^5
  • s consists of integers and operators (‘+’, ‘-‘, ‘*’, ‘/’) separated by some number of spaces.
  • s represents a valid expression.
  • All the integers in the expression are non-negative integers in the range [0, 2^31 - 1].
  • The answer is guaranteed to fit in a 32-bit integer.


Sample C++ Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 int calculate(string s) {
    stack<int> stk;
    int a;
    istringstream iss(s);
    char op = '+';
    while (iss >> a){
        if (op == '+' || op == '-'){
            stk.push(op == '+' ? a : -a);
        } 
        else{
            int last = stk.top();
            stk.pop();
            if (op == '*') last *= a;
            else last /= a;
            stk.push(last);
        }
        iss >> op;
    }
    int sum = 0;
    while(!stk.empty()){
        sum += stk.top();
        stk.pop();
    }
    return sum;
}




Related Posts

Three Equal Parts Problem

LeetCode 927. You are given an array arr which consists...

Surface Area Of 3D Shapes Problem

LeetCode 892. You are given an n x n grid...

Super Palindromes Problem

LeetCode 906. Let’s say a positive integer is a super-palindrome...

Smallest Range I Problem

LeetCode 908. You are given an integer array nums and...

Projection Area Of 3D Shapes Problem

LeetCode 883. You are given an n x n grid...

Prime Palindrome Problem

LeetCode 866. Given an integer n, return the smallest prime...