方案中的一个列表到两个列表

发布于 2024-11-07 20:20:58 字数 159 浏览 0 评论 0原文

我有一个列表 ((x 1) (y 2) (z 3)) 我想制作 2 个单独的列表:(xyz)(1 2 3)

我尝试使用递归调用,使用 car 和 cdr,但没有成功。有一个简单的方法可以做到吗? 谢谢。

i have a list ((x 1) (y 2) (z 3)) and I want to make 2 seprate lists: (x y z) and
(1 2 3)

I tried using recursive call, using car and cdr, but it didnt work. there is a simple way to do it?
Thanks.

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

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

发布评论

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

评论(3

紫南 2024-11-14 20:20:58

cdr 返回列表的尾部,这是一个列表(假设输入是一个列表,而不是 cons 单元)。您可能想使用 cadr(car (cdr foo)) 的简写)。您可以这样做:(

(map car lst)  ; '(x y z)
(map cadr lst) ; '(1 2 3)

map 将调用将给定函数应用于列表中的每个项目)。

cdr returns the tail of the list, which is a list (assuming the input is a list, and not a cons cell). You probably want to use cadr instead (short-hand for (car (cdr foo))). You could do:

(map car lst)  ; '(x y z)
(map cadr lst) ; '(1 2 3)

(map will call apply the given function to each item in the list).

绝不服输 2024-11-14 20:20:58
(apply map list lst) ; returns ((x y z) (1 2 3))

或者使用 srfi-1 中的 unzip2

(apply map list lst) ; returns ((x y z) (1 2 3))

Or use unzip2 from srfi-1.

苏辞 2024-11-14 20:20:58

将 ls 作为您的列表:(map car ls) 和 (map car (map cdr ls))

with ls as your list: (map car ls) and (map car (map cdr ls))

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文