互递归问题
如何将两个相互递归的函数更改为线性递归?我必须在一个方法中使用这两种方法吗?
How do I change two functions that are Mutual Recursive to each other to make them into a linear recursion? Do I have to have both the methods in a single method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够简单地将第二个方法的实现“内联”到第一个方法中。
也就是说,
。
如果第二个方法很长,并且从第一个方法中的多个点调用,则它可能会变得混乱
You should be able to simply "inline" the implementation of the second method, into the first method.
That is,
becomes
If the second method is long, and called from multiple points in the first method, it may get messy though.