gpt4 book ai didi

list - Lisp 从列表中获取元素

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

我正在尝试从 n 位置获取元素到 m 位置。但是我得到了一些错误。我该如何解决?

(defun element (list start end) 
(dotimes (start end) (n-esimo list start)
))

(defun n-esimo (l n)
(cond ((equal n 0) (first l))
(t (n-esimo (rest l) (- n 1)))))

最佳答案

没有必要写它(除非你的任务是你家庭作业的一部分,然后你应该通过在你的问题中添加标签 homework 来告诉我们,或者用于其他教育目的。)。 Common Lisp 内置了这个功能。它叫做SUBSEQ .

关于list - Lisp 从列表中获取元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9072277/

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