让我知道代码中的错误并编辑它
定义一个名为 symcount 的函数,它接受一个符号和一个列表,并返回该符号在列表中出现的次数。如果列表包含子列表,则无论嵌套的深度如何,都应计算所有出现的次数。
(define syscount(lambda (n x)
(if (empty? x)
0
(if (equal? n (car x))
(+ 1 syscount(n (cdr x)))))))
这是我写的,请帮助我
Define a function called symcount that takes a symbol and a list and returns the number of times the symbol occurs in the list. If the list contains sublists, all occurrences should be counted no matter how deeply they are nested.
(define syscount(lambda (n x)
(if (empty? x)
0
(if (equal? n (car x))
(+ 1 syscount(n (cdr x)))))))
this is what i have written help me pls
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
输出是
Output is
类似于:
测试:
Something like:
Test: