如何用编程语言 C 设计整数接受器
我正在读彼得·林茨(Peter Linz)写的一本名为《形式语言和自动机简介》的书。在其中一个问题中,它要求我“用编程语言 C 设计一个整数接受器” 有人可以告诉我如何获得这个问题的答案吗?任何帮助将不胜感激
I was reading a book named "An introduction to Formal Languages and Automata" by Peter Linz. In one of it's questions, it asked me to, "Design an acceptor for integers in a programming language C"
Can some one please tell me how can I obtain an answer for this. Any help would be greatly appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于你的书是关于自动机的,我猜他们希望你编写一个有限状态机。你可以搜索一下如何用C编写FSM;这是一个示例。
Since your book is about automata, I'm guessing that they want you to write a finite state machine. You can do a search for how to write an FSM in C; here is one example.