736. Parse Lisp Expression

网友投稿 580 2022-09-04

736. Parse Lisp Expression

736. Parse Lisp Expression

You are given a string expression representing a Lisp-like expression to return the integer value of.

The syntax for these expressions is given as follows.

An expression is either an integer, a let-expression, an add-expression, a mult-expression, or an assigned variable. Expressions always evaluate to a single integer. (An integer could be positive or negative.) A let-expression takes the form (let v1 e1 v2 e2 … vn en expr), where let is always the string “let”, then there are 1 or more pairs of alternating variables and expressions, meaning that the first variable v1 is assigned the value of the expression e1, the second variable v2 is assigned the value of the expression e2, and so on sequentially; and then the value of this let-expression is the value of the expression expr. An add-expression takes the form (add e1 e2) where add is always the string “add”, there are always two expressions e1, e2, and this expression evaluates to the addition of the evaluation of e1 and the evaluation of e2. A mult-expression takes the form (mult e1 e2) where mult is always the string “mult”, there are always two expressions e1, e2, and this expression evaluates to the multiplication of the evaluation of e1 and the evaluation of e2. For the purposes of this question, we will use a smaller subset of variable names. A variable starts with a lowercase letter, then zero or more lowercase letters or digits. Additionally for your convenience, the names “add”, “let”, or “mult” are protected and will never be used as variable names. Finally, there is the concept of scope. When an expression of a variable name is evaluated, within the context of that evaluation, the innermost scope (in terms of parentheses) is checked first for the value of that variable, and then outer scopes are checked sequentially. It is guaranteed that every expression is legal. Please see the examples for more details on scope. Evaluation Examples:

Input: (add 1 2)Output: 3Input: (mult 3 (add 2 3))Output: 15Input: (let x 2 (mult x 5))Output: 10Input: (let x 2 (mult x (let x 3 y 4 (add x y))))Output: 14Explanation: In the expression (add x y), when checking for the value of the variable x,we check from the innermost scope to the outermost in the context of the variable we are trying to evaluate.Since x = 3 is found first, the value of x is 3.Input: (let x 3 x 2 x)Output: 2Explanation: Assignment in let statements is processed sequentially.Input: (let x 1 y 2 x (add x y) (add x y))Output: 5Explanation: The first (add x y) evaluates as 3, and is assigned to x.The second (add x y) evaluates as 3+2 = 5.Input: (let x 2 (add (let x 3 (let x 4 x)) x))Output: 6Explanation: Even though (let x 4 x) has a deeper scope, it is outside the contextof the final x in the add-expression. That final x will equal 2.Input: (let a1 3 b2 (add a1 1) b2) Output 4Explanation: Variable names can contain digits after the first character.

Note:

The given string expression is well formatted: There are no leading or trailing spaces, there is only a single space separating different components of the string, and no space between adjacent parentheses. The expression is guaranteed to be legal and evaluate to an integer. The length of expression is at most 2000. (It is also non-empty, as that would not be a legal expression.) The answer and all intermediate calculations of that answer are guaranteed to fit in a 32-bit integer.

class Solution { ArrayList> scope; public Solution() { scope = new ArrayList(); scope.add(new HashMap()); } public int evaluate(String expression) { scope.add(new HashMap()); int ans = evaluate_inner(expression); scope.remove(scope.size() - 1); return ans; } public int evaluate_inner(String expression) { if (expression.charAt(0) != '(') { if (Character.isDigit(expression.charAt(0)) || expression.charAt(0) == '-') return Integer.parseInt(expression); for (int i = scope.size() - 1; i >= 0; --i) { if (scope.get(i).containsKey(expression)) return scope.get(i).get(expression); } } List tokens = parse(expression.substring( expression.charAt(1) == 'm' ? 6 : 5, expression.length() - 1)); if (expression.startsWith("add", 1)) { return evaluate(tokens.get(0)) + evaluate(tokens.get(1)); } else if (expression.startsWith("mult", 1)) { return evaluate(tokens.get(0)) * evaluate(tokens.get(1)); } else { for (int j = 1; j < tokens.size(); j += 2) { scope.get(scope.size() - 1).put(tokens.get(j-1), evaluate(tokens.get(j))); } return evaluate(tokens.get(tokens.size() - 1)); } } public List parse(String expression) { List ans = new ArrayList(); int bal = 0; StringBuilder buf = new StringBuilder(); for (String token: expression.split(" ")) { for (char c: token.toCharArray()) { if (c == '(') bal++; if (c == ')') bal--; } if (buf.length() > 0) buf.append(" "); buf.append(token); if (bal == 0) { ans.add(new String(buf)); buf = new StringBuilder(); } } if (buf.length() > 0) ans.add(new String(buf)); return

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:【开源组件】一份值得收藏的的 MySQL 规范(基础组件开发)
下一篇:685. Redundant Connection II
相关文章

 发表评论

暂时没有评论,来抢沙发吧~