Lisp 反转“全部”功能
我想在 lisp 中编写一个函数,使用映射函数反转列表中的所有元素,但我不知道如何开始这个。我想我必须以某种方式使用内置的反向函数。 例如,如果我有列表 (1 2 3 (4 5 6 (7 8 9))) 我会得到 (((9 8 7) 6 5 4) 3 2 1) 或者如果我有列表(1 2 3 (4 5) (6 7)) 我会得到 ((7 6) (5 4) 3 2 1) .. 任何帮助表示赞赏!
I want to write a function in lisp that reverses all elements from the list using map functions but I don't have any idea how to start this.. I think I have to use the built in reverse function somehow..
For example if I have the list (1 2 3 (4 5 6 (7 8 9))) I would get (((9 8 7) 6 5 4) 3 2 1)
or if I had the list(1 2 3 (4 5) (6 7)) I would get ((7 6) (5 4) 3 2 1) ..
Any help is appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只是一个快速回答,不确定效率/优雅:
Just a quick answer, not sure about efficiency/elegancy:
这是一个在 Common-Lisp 中适合我的版本。
输出:
Mapcar 是一个函数,它将另一个函数作为其第一个参数,将列表作为其第二个参数。然后它对列表的每个元素调用该函数。它返回所有答案的列表。因此,在我使用“mapcar”反转所有子列表后,我再次调用“reverse”来反转更大的列表。
它在每个子列表上调用的函数是“reverse-list”。这检查列表是否是一个原子。如果是,则它返回自身。如果它是一个列表,那么它会在列表中的每个元素上再次调用mapcar,然后反转结果。
Here is a version that works for me in Common-Lisp.
Output:
Mapcar is a function that takes another function as its first parameter and a list as its second parameter. It then calls that function on each element of the list. It returns a list of all of the answers. So after I use 'mapcar' to reverse all of the sublists, I call 'reverse' again to reverse the bigger list.
The function that it calls on each sublist is 'reverse-list'. This checks if the list is an atom. If it is, then it returns itself. If it's a list, then it calls mapcar again on each element in the list, then reverses the result.