gpt4 book ai didi

list - Lisp 移动列表中的元素

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

我有一个表单列表:

(or a b c (and d e) f g (and h i) (==> x y))

我喜欢在 or 之后移动以 and 开头的子列表,如下所示:

(or (and d e) (and h i) a b c f g (==> x y))

我该怎么做?我不确定什么是最好的方法,因为它是一个列表,我不能像使用其他数据结构那样随意放置一个元素。

最佳答案

? (stable-sort (rest '(or a b c (and d e) f g (and h i) (==> x y)))
(lambda (x y)
(and (consp x) (eq (first x) 'and))))
((AND H I) (AND D E) A B C F G (==> X Y))

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

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