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 e1and 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: 3

Input: (mult 3 (add 2 3))
Output: 15

Input: (let x 2 (mult x 5))
Output: 10

Input: (let x 2 (mult x (let x 3 y 4 (add x y))))
Output: 14
Explanation: 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: 2
Explanation: Assignment in let statements is processed sequentially.

Input: (let x 1 y 2 x (add x y) (add x y))
Output: 5
Explanation: 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: 6
Explanation: Even though (let x 4 x) has a deeper scope, it is outside the context
of the final x in the add-expression.  That final x will equal 2.

Input: (let a1 3 b2 (add a1 1) b2) 
Output 4
Explanation: 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.

因为input的结构比较固定,mult 和 add后面永远是接两个数或者表达式,或者一样一个,所以我们可以把input不断递归,使得最后input是一个数。这样就把问题解决了。

对于let,永远是多个pair+表达式,处理也是一样。

 1 class Solution {
 2     public int evaluate(String expression) {
 3         return helper(expression, new HashMap<>());
 4     }
 5     
 6     private int helper(String expression, Map<String, Integer> map) {
 7         if (isNumber(expression)) {
 8             return Integer.parseInt(expression);
 9         }
10         
11         if (isVariable(expression)) {
12             return map.get(expression);
13         }
14         List<String> tokens = parse(expression);
15         
16         if (tokens.get(0).equals("add")) {
17             return helper(tokens.get(1), map) + helper(tokens.get(2), map);
18         } else if (tokens.get(0).equals("mult")) {
19             return helper(tokens.get(1), map) * helper(tokens.get(2), map);
20         } else {
21             Map<String, Integer> newMap = new HashMap<>(map);
22             for (int i = 1; i < tokens.size() - 1; i += 2) {
23                 newMap.put(tokens.get(i), helper(tokens.get(i + 1), newMap));
24             }
25             return helper(tokens.get(tokens.size() - 1), newMap);
26         }
27     }
28     
29     private boolean isNumber(String expression) {
30         char firstLetter = expression.charAt(0);
31         return firstLetter == '-' || firstLetter == '+' || firstLetter <= '9' && firstLetter >= '0';
32     }
33     
34     private boolean isVariable(String expression) {
35         char firstLetter = expression.charAt(0);
36         return firstLetter <= 'z' && firstLetter >= 'a';
37     }
38     
39     private List<String> parse(String exp) {
40         List<String> parts = new ArrayList<>();
41         exp = exp.substring(1, exp.length() - 1);
42         int startIndex = 0;
43         while (startIndex < exp.length()) {
44             int endIndex = next(exp, startIndex);
45             parts.add(exp.substring(startIndex, endIndex));
46             startIndex = endIndex + 1;
47         }
48         return parts;
49     }
50     
51     private int next(String expression, int startIndex) {
52         if (expression.charAt(startIndex) == '(') {
53             int count = 1;
54             startIndex++;
55             while (startIndex < expression.length() && count > 0) {
56                 if (expression.charAt(startIndex) == '(') {
57                     count++;
58                 } else if (expression.charAt(startIndex) == ')') {
59                     count--;
60                 }
61                 startIndex++;
62             }
63         } else {
64             while (startIndex < expression.length() && expression.charAt(startIndex) != ' ') {
65                 startIndex++;
66             }
67         }
68         return startIndex;
69     }
70 }

如果问题里面没有let,代码可以简化为:

 1 class Solution {
 2     public int evaluate(String expression) {
 3         if (isNumber(expression)) {
 4             return Integer.parseInt(expression);
 5         }
 6         
 7         List<String> tokens = parse(expression);
 8         
 9         if (tokens.get(0).equals("add")) {
10             return evaluate(tokens.get(1)) + evaluate(tokens.get(2));
11         } else {
12             return evaluate(tokens.get(1)) * evaluate(tokens.get(2));
13         }
14     }
15     
16     private boolean isNumber(String expression) {
17         char firstLetter = expression.charAt(0);
18         return firstLetter == '-' || firstLetter == '+' || firstLetter <= '9' && firstLetter >= '0';
19     }
20     
21     private List<String> parse(String exp) {
22         List<String> parts = new ArrayList<>();
23         exp = exp.substring(1, exp.length() - 1);
24         int startIndex = 0;
25         while (startIndex < exp.length()) {
26             int endIndex = next(exp, startIndex);
27             parts.add(exp.substring(startIndex, endIndex));
28             startIndex = endIndex + 1;
29         }
30         return parts;
31     }
32     
33     private int next(String expression, int index) {
34         if (expression.charAt(index) == '(') {
35             int count = 1;
36             index++;
37             while (index < expression.length() && count > 0) {
38                 if (expression.charAt(index) == '(') {
39                     count++;
40                 } else if (expression.charAt(index) == ')') {
41                     count--;
42                 }
43                 index++;
44             }
45         } else {
46             while (index < expression.length() && expression.charAt(index) != ' ') {
47                 index++;
48             }
49         }
50         return index;
51     }
52 }
posted @ 2019-07-20 13:08  北叶青藤  阅读(345)  评论(0编辑  收藏  举报