在 YACC(Bison) 中将中缀转换为后缀
我一直在尝试使用 YACC(Bison) 将中缀表达式转换为后缀表达式,但没有成功。我想知道如何才能做到?示例代码会很棒:)
I have been trying to convert an infix expression to postfix expression using YACC(Bison) with no success. I would like to know how it can be done? Sample code will be awesome :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我的解决方案:
gram.l 文件:
gram.y 文件:
shell:
示例输入和输出:
This is my solution:
gram.l file:
gram.y file:
shell:
example input and output: