227. Basic Calculator II

Difficulty:
Related Topics:
Similar Questions:

Problem

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:

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

Example 2:

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

Example 3:

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

  Constraints:

Solution (Java)

class Solution {
    public int calculate(String s) {
        int sum = 0;
        int tempSum = 0;
        int num = 0;
        char lastSign = '+';
        for (int i = 0; i < s.length(); i++) {
            char c = s.charAt(i);
            if (Character.isDigit(c)) {
                num = num * 10 + c - '0';
            }
            // i == s.length() - 1 will make sure that after last num is
            // made and there is nothing to read anything from 's', the final computation is done
            if (i == s.length() - 1 || !Character.isDigit(c) && c != ' ') {
                switch (lastSign) {
                    case '+':
                        sum += tempSum;
                        tempSum = num;
                        break;
                    case '-':
                        sum += tempSum;
                        tempSum = -num;
                        break;
                    case '*':
                        tempSum *= num;
                        break;
                    case '/':
                        if (num != 0) {
                            tempSum /= num;
                        }
                        break;
                    default:
                        break;
                }
                lastSign = c;
                num = 0;
            }
        }
        // finally, add tempSum to sum
        sum += tempSum;
        return sum;
    }
}

Solution (Javascript)

/**
 * @param {string} s
 * @return {number}
 */
var calculate = function(s) {
    let sum = 0, prev = (curr = 0), currOperator = "+";
    for (let i = 0; i < s.length; i++) {
        if (s[i] === " ") continue; 
        if (/[0-9]/.test(s[i])) {
            curr = s[i++];
            while (/[0-9]/.test(s[i])) curr = curr * 10 + +s[i++];
            i--;
            if (currOperator === "+") {
                sum += +curr;
                prev = curr;
            } else if (currOperator === "-") {
                sum -= curr;
                prev = -curr;
            } else if (currOperator === "*") {
                sum -= prev;
                sum += prev * curr;
                prev = prev * curr;
            } else if (currOperator === "/") {
                sum -= prev;
                sum += +Math.trunc(prev / curr);
                prev = Math.trunc(prev / curr);
            }
        } else {
            currOperator = s[i];
        }
    }
    return sum;
};

Explain:

nope.

Complexity: