gpt4 book ai didi

lisp - 在 scheme 中实现 has-list

转载 作者:太空宇宙 更新时间:2023-11-03 18:53:09 25 4
gpt4 key购买 nike

如何递归地实现一个 Scheme 函数 has-list,它测试一个列表是否包含其他列表作为元素。例如 (has-list '(1 2 3)) 应该返回 false,而 (has-list '(1 2 (3 4) 5)) 应该返回 true。

最佳答案

如果你的实现有类似ormap的东西,那么:

(define (has-list? l) (ormap list? l))

在 Dan D. 的回答中使用 是行不通的。

关于lisp - 在 scheme 中实现 has-list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5135989/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com