1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/解析布尔表达式 [parsing-a-boolean-expression].html

54 lines
2.6 KiB
HTML
Raw Normal View History

2023-12-09 18:42:21 +08:00
<p><strong>布尔表达式</strong> 是计算结果不是 <code>true</code> 就是 <code>false</code> 的表达式。有效的表达式需遵循以下约定:</p>
2022-03-27 20:37:52 +08:00
<ul>
2023-12-09 18:42:21 +08:00
<li><code>'t'</code>,运算结果为 <code>true</code></li>
<li><code>'f'</code>,运算结果为 <code>false</code></li>
<li><code>'!(subExpr)'</code>,运算过程为对内部表达式 <code>subExpr</code> 进行 <strong>逻辑非</strong>NOT运算</li>
<li><code>'&amp;(subExpr<sub>1</sub>, subExpr<sub>2</sub>, ..., subExpr<sub>n</sub>)'</code>,运算过程为对 2 个或以上内部表达式 <code>subExpr<sub>1</sub>, subExpr<sub>2</sub>, ..., subExpr<sub>n</sub></code> 进行 <strong>逻辑与</strong>AND运算</li>
<li><code>'|(subExpr<sub>1</sub>, subExpr<sub>2</sub>, ..., subExpr<sub>n</sub>)'</code>,运算过程为对 2 个或以上内部表达式 <code>subExpr<sub>1</sub>, subExpr<sub>2</sub>, ..., subExpr<sub>n</sub></code> 进行 <strong>逻辑或</strong>OR运算</li>
2022-03-27 20:37:52 +08:00
</ul>
2023-12-09 18:42:21 +08:00
<p>给你一个以字符串形式表述的&nbsp;<a href="https://baike.baidu.com/item/%E5%B8%83%E5%B0%94%E8%A1%A8%E8%BE%BE%E5%BC%8F/1574380?fr=aladdin" target="_blank">布尔表达式</a> <code>expression</code>,返回该式的运算结果。</p>
2022-03-27 20:37:52 +08:00
2023-12-09 18:42:21 +08:00
<p>题目测试用例所给出的表达式均为有效的布尔表达式,遵循上述约定。</p>
2022-03-27 20:37:52 +08:00
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
2022-03-27 20:37:52 +08:00
2023-12-09 18:42:21 +08:00
<p><strong class="example">示例 1</strong></p>
2022-03-27 20:37:52 +08:00
2023-12-09 18:42:21 +08:00
<pre>
<strong>输入:</strong>expression = "&amp;(|(f))"
<strong>输出:</strong>false
<strong>解释:</strong>
首先,计算 |(f) --&gt; f ,表达式变为 "&amp;(f)" 。
接着,计算 &amp;(f) --&gt; f ,表达式变为 "f" 。
最后,返回 false 。
2022-03-27 20:37:52 +08:00
</pre>
2023-12-09 18:42:21 +08:00
<p><strong class="example">示例 2</strong></p>
2022-03-27 20:37:52 +08:00
2023-12-09 18:42:21 +08:00
<pre>
<strong>输入:</strong>expression = "|(f,f,f,t)"
<strong>输出:</strong>true
<strong>解释:</strong>计算 (false OR false OR false OR true) ,结果为 true 。
2022-03-27 20:37:52 +08:00
</pre>
2023-12-09 18:42:21 +08:00
<p><strong class="example">示例 3</strong></p>
2022-03-27 20:37:52 +08:00
2023-12-09 18:42:21 +08:00
<pre>
<strong>输入:</strong>expression = "!(&amp;(f,t))"
<strong>输出:</strong>true
<strong>解释:</strong>
首先,计算 &amp;(f,t) --&gt; (false AND true) --&gt; false --&gt; f ,表达式变为 "!(f)" 。
接着,计算 !(f) --&gt; NOT false --&gt; true ,返回 true 。
2022-03-27 20:37:52 +08:00
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
2023-12-09 18:42:21 +08:00
<li><code>1 &lt;= expression.length &lt;= 2 * 10<sup>4</sup></code></li>
<li><code>expression[i]</code><code>'('</code><code>')'</code><code>'&amp;'</code><code>'|'</code><code>'!'</code><code>'t'</code><code>'f'</code><code>','</code> 之一</li>
2022-03-27 20:37:52 +08:00
</ul>