原文链接: https://leetcode-cn.com/problems/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, let expression, add expression, 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 one or more pairs of alternating variables and expressions, meaning that the first variablev1
is assigned the value of the expressione1
, the second variablev2
is assigned the value of the expressione2
, and so on sequentially; and then the value of this let expression is the value of the expressionexpr
. - An add expression takes the form
"(add e1 e2)"
where add is always the string"add"
, there are always two expressionse1
,e2
and the result is the addition of the evaluation ofe1
and the evaluation ofe2
. - A mult expression takes the form
"(mult e1 e2)"
where mult is always the string"mult"
, there are always two expressionse1
,e2
and the result is the multiplication of the evaluation of e1 and the evaluation of e2. - For 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"
, and"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 the scope.
Example 1:
Input: expression = "(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.
Example 2:
Input: expression = "(let x 3 x 2 x)" Output: 2 Explanation: Assignment in let statements is processed sequentially.
Example 3:
Input: expression = "(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.
Example 4:
Input: expression = "(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.
Example 5:
Input: expression = "(let a1 3 b2 (add a1 1) b2)" Output: 4 Explanation: Variable names can contain digits after the first character.
Constraints:
1 <= expression.length <= 2000
- There are no leading or trailing spaces in
exprssion
. - All tokens are separated by a single space in
expressoin
. - The answer and all intermediate calculations of that answer are guaranteed to fit in a 32-bit integer.
- The expression is guaranteed to be legal and evaluate to an integer.
中文题目
给定一个类似 Lisp 语句的表达式 expression
,求出其计算结果。
表达式语法如下所示:
- 表达式可以为整数,let 语法,add 语法,mult 语法,或赋值的变量。表达式的结果总是一个整数。
- (整数可以是正整数、负整数、0)
- let 语法表示为
(let v1 e1 v2 e2 ... vn en expr)
, 其中let
语法总是以字符串"let"
来表示,接下来会跟随一个或多个交替变量或表达式,也就是说,第一个变量v1
被分配为表达式e1
的值,第二个变量v2
被分配为表达式e2
的值,以此类推;最终 let 语法的值为expr
表达式的值。 - add 语法表示为
(add e1 e2)
,其中add
语法总是以字符串"add"
来表示,该语法总是有两个表达式e1
、e2
, 该语法的最终结果是e1
表达式的值与e2
表达式的值之和。 - mult 语法表示为
(mult e1 e2)
,其中mult
语法总是以字符串"mult"
表示, 该语法总是有两个表达式e1
、e2
,该语法的最终结果是e1
表达式的值与e2
表达式的值之积。 - 在该题目中,变量的命名以小写字符开始,之后跟随0个或多个小写字符或数字。为了方便,"add","let","mult"会被定义为"关键字",不会在表达式的变量命名中出现。
- 最后,要说一下作用域的概念。计算变量名所对应的表达式时,在计算上下文中,首先检查最内层作用域(按括号计),然后按顺序依次检查外部作用域。我们将保证每一个测试的表达式都是合法的。有关作用域的更多详细信息,请参阅示例。
示例:
输入: (add 1 2) 输出: 3 输入: (mult 3 (add 2 3)) 输出: 15 输入: (let x 2 (mult x 5)) 输出: 10 输入: (let x 2 (mult x (let x 3 y 4 (add x y)))) 输出: 14 解释: 表达式 (add x y), 在获取 x 值时, 我们应当由最内层依次向外计算, 首先遇到了 x=3, 所以此处的 x 值是 3. 输入: (let x 3 x 2 x) 输出: 2 解释: let 语句中的赋值运算按顺序处理即可 输入: (let x 1 y 2 x (add x y) (add x y)) 输出: 5 解释: 第一个 (add x y) 计算结果是 3,并且将此值赋给了 x 。 第二个 (add x y) 计算结果就是 3+2 = 5 。 输入: (let x 2 (add (let x 3 (let x 4 x)) x)) 输出: 6 解释: (let x 4 x) 中的 x 的作用域仅在()之内。所以最终做加法操作时,x 的值是 2 。 输入: (let a1 3 b2 (add a1 1) b2) 输出: 4 解释: 变量命名时可以在第一个小写字母后跟随数字.
注意:
- 我们给定的
expression
表达式都是格式化后的:表达式前后没有多余的空格,表达式的不同部分(关键字、变量、表达式)之间仅使用一个空格分割,并且在相邻括号之间也没有空格。我们给定的表达式均为合法的且最终结果为整数。 - 我们给定的表达式长度最多为 2000 (表达式也不会为空,因为那不是一个合法的表达式)。
- 最终的结果和中间的计算结果都将是一个 32 位整数。
通过代码
官方题解
方法:递归分析法 [Accepted]
算法:
这个问题从表达式的语法看相对简单,但是在解决的过程中会出现较大的困难。
表达式中会包含子表达式,这种情况适合用递归来解决。
一个难点是如何管理变量的正确范围。我们可以用栈来存放变量和值的对应关系,当进入变量作用的括号范围时,就将变量和值的哈希映射添加到栈中,当出括号内时,就弹出栈顶元素。
evaluate
方法会检查每个表达式 expression
采用的形式
- 如果
expression
是数字开头,则它是一个整数:返回它。 - 如果
expression
以字母开头,则它是一个变量。则检查该变量的作用域。 - 否则我们将
expression
中的标记(变量或表达式)分组,通过计算bal = '(' 的数量减去 ')' 的数量
,当bal
为零时,则我们得到一个标记。举个例子:(add 1 (add 2 3))
可以获得两个标记'1'
和'(add 2 3)'
。 - 计算每个标记并返回它们的加法或乘法得结果。
- 对于
let
表达式,按顺序计算每个表达式并将其值分配给当前作用域中的变量,然后返回对最终表达式的求值。
def implicit_scope(func):
def wrapper(*args):
args[0].scope.append({})
ans = func(*args)
args[0].scope.pop()
return ans
return wrapper
class Solution(object):
def __init__(self):
self.scope = [{}]
@implicit_scope
def evaluate(self, expression):
if not expression.startswith('('):
if expression[0].isdigit() or expression[0] == '-':
return int(expression)
for local in reversed(self.scope):
if expression in local: return local[expression]
tokens = list(self.parse(expression[5 + (expression[1] == 'm'): -1]))
if expression.startswith('(add'):
return self.evaluate(tokens[0]) + self.evaluate(tokens[1])
elif expression.startswith('(mult'):
return self.evaluate(tokens[0]) * self.evaluate(tokens[1])
else:
for j in xrange(1, len(tokens), 2):
self.scope[-1][tokens[j-1]] = self.evaluate(tokens[j])
return self.evaluate(tokens[-1])
def parse(self, expression):
bal = 0
buf = []
for token in expression.split():
bal += token.count('(') - token.count(')')
buf.append(token)
if bal == 0:
yield " ".join(buf)
buf = []
if buf:
yield " ".join(buf)
class Solution {
ArrayList<Map<String, Integer>> 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<String> 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<String> parse(String expression) {
List<String> 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 ans;
}
}
复杂度分析
- 时间复杂度:$O(N^2)$。其中 $N$ 指的是
expression
的长度。每个表达式只计算一次,但在计算过程中可能要搜索整个范围。 - 空间复杂度:$O(N^2)$,在进行中间求值时,我们可以将 $O(N)$ 个新字符串传递给
evaluate
函数,每个字符串的长度为 $O(N)$。通过优化,可以将总空间复杂度降低到 $O(N)$。
统计信息
通过次数 | 提交次数 | AC比率 |
---|---|---|
1615 | 3442 | 46.9% |
提交历史
提交时间 | 提交结果 | 执行时间 | 内存消耗 | 语言 |
---|
相似题目
题目 | 难度 |
---|---|
三元表达式解析器 | 中等 |
原子的数量 | 困难 |
基本计算器 IV | 困难 |