计算器如何解析表达式

发布于 2024-10-31 22:25:30 字数 44 浏览 0 评论 0原文

数字计算器如何转换解析表达式?是中缀、前缀还是后缀?计算器如何解算表达式?

How do digital calculators convert the expression for parsing? Is it infix, prefix, or postfix? How do calculators solve expressions?

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

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

发布评论

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

评论(1

‘画卷フ 2024-11-07 22:25:30

如今,最常见的是在数字计算器中输入单行表达式,就像写下来一样,因此通常使用中缀表示法。转换为后缀是评估这些表达式以求解它们的常用方法。
有很多例子,这个 C++ 实现有很多实现信息还简要解释了括号的处理、左关联运算符与右关联运算符之类的内容。

Nowadays it is most common to enter single line expressions in digital calculators just as you would write them down, so normally infix notation. Converting to postfix is a common way to evaluate those expressions in order to solve them.
There are lots of examples around, this C++ implementation has lots of implementation information and also briefly explains handling parentheses, left associative vs. right associative operators and stuff like that.

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