识别后缀公式的语法
我正在尝试创建一个后缀到中缀转换器,但无法创建后缀公式的语法。我也一直在寻找它一段时间但没有成功。
我可以使用什么语法来识别有效的后缀表达式?
我需要的标记是:数字
,+
、*
和 ^
(pow)。
I'm trying to create a postfix to infix converter, and I'm unable to create the grammar for postfix formulas. I've been also looking for it for a while without success..
What grammar could I use to recognize valid postfix expressions?
The tokens I need are: number
, +
, *
and ^
(pow).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议
I would suggest
在什么意义上有效?产生一个值?
Valid in what sense? Resulting in one value?