“和”和尾递归

发布于 2024-10-10 02:57:48 字数 222 浏览 2 评论 0原文

我可以在 and 语句中使用递归调用来构建迭代过程吗?

例如,出于目的,我们有一个不执行任何操作的函数 foo。它将创建什么样的过程(迭代或递归)?

(define (foo? bar) 
  (if (< bar 0) true (and (> 10 1) (foo? (- bar 1)))))

Can I build iterative process using recursive call in and statement?

For example, purpose, we have function foo that doesn't do anything. What kind of process it will create (iterative or recursion)?

(define (foo? bar) 
  (if (< bar 0) true (and (> 10 1) (foo? (- bar 1)))))

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

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

发布评论

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

评论(2

等数载,海棠开 2024-10-17 02:57:48

是的,没问题 - 您可以在 标准

Yes, and is OK - you can read this in the standard.

兰花执着 2024-10-17 02:57:48

为了兰伯特的缘故,让我们扩展一下语法。

(define (foo? bar) 
  (if (< bar 0) 
      #t ; tail position, but no call
      (if (> 10 1) 
          (foo? (- bar 1)) ; tail position
          #f))) ; tail position, but no call

For Lamberts sake, lets expand the syntax.

(define (foo? bar) 
  (if (< bar 0) 
      #t ; tail position, but no call
      (if (> 10 1) 
          (foo? (- bar 1)) ; tail position
          #f))) ; tail position, but no call
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文