gpt4 book ai didi

list - 查找列表中元素的索引

转载 作者:行者123 更新时间:2023-12-03 15:12:45 27 4
gpt4 key购买 nike

我需要在方案中获取列表中元素的索引。例如:

(... 2 '(2 3 4 5))

0

(... 4 '(2 3 4 5))

2



有人可以帮忙吗?

最佳答案

像这样的东西

(define list-index
(lambda (e lst)
(if (null? lst)
-1
(if (eq? (car lst) e)
0
(if (= (list-index e (cdr lst)) -1)
-1
(+ 1 (list-index e (cdr lst))))))))

关于list - 查找列表中元素的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13562200/

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