字符串解析 - 递归

发布于 2024-10-11 18:40:57 字数 199 浏览 0 评论 0原文

我有一个像这样的字符串/表达式:

(((p1 == 1) && (p2 != 2)) || p3 > 3) || (p4 < 5)

我想递归地解析这个表达式以构建二元表达式树。

因此,对于这个表达式,根将是 ||操作员。

我怎样才能构建该算法? 提前致谢,

I have an string/expression like this:

(((p1 == 1) && (p2 != 2)) || p3 > 3) || (p4 < 5)

I want to parse this expression recursively in order to build a binary expression tree.

So, for this expression, the root would be || operator.

How can I build that algorithm?
Thanks in advance,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独享拥抱 2024-10-18 18:40:57

查看调车场算法

在计算机科学中,调车场算法是一种方法
解析中缀表示法指定的数学表达式。它可以
用于产生逆波兰表示法(RPN)的输出或作为
抽象语法树(AST)。该算法由 Edsger 发明
Dijkstra 因其操作性而将算法命名为“调车场”
类似于铁路调车场。

Take a look at the Shunting-Yard Algorithm.

In computer science, the shunting-yard algorithm is a method for
parsing mathematical expressions specified in infix notation. It can
be used to produce output in Reverse Polish notation (RPN) or as an
abstract syntax tree (AST). The algorithm was invented by Edsger
Dijkstra and named the "shunting yard" algorithm because its operation
resembles that of a railroad shunting yard.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文