gpt4 book ai didi

lisp - 这个lisp函数可以递归实现吗?

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

此函数的目标是生成 2 列表的笛卡尔积。例如

  • (组合(列表 1 2 3) (列表 4 5)) => (1 4) (1 5) (2 4) (2 5) (3 4) (3 5)

    (defun combo (l1 l2)
    (let (
    (res (list))
    )
    (dolist (elem1 l1 res)
    (dolist (elem2 l2 res)
    (setq res (append res (list(list elem1 elem2))))
    )
    )
    )

    )

如何递归实现?

最佳答案

一个简单的递归实现是使用两个辅助函数;一个遍历 L1(下面代码中的 %COMBO),调用另一个函数将一个元素与 L2 中的每个元素配对(%PRODUCT):

(defun combo (l1 l2)
(labels ((%product (el list &optional (acc (list)))
(if (endp list)
acc
(%product el (rest list) (cons (list el (first list)) acc))))
(%combo (l1 l2 &optional (acc (list)))
(if (endp l1)
(nreverse acc)
(%combo (rest l1) l2 (nconc (%product (first l1) l2) acc)))))
(%combo l1 l2)))

不过,迭代方法既简单又高效。不要在循环中使用 APPEND,您应该在最后反转列表。

(defun combo (l1 l2)
(let ((res (list)))
(dolist (e1 l1 (nreverse res))
(dolist (e2 l2)
(push (list e1 e2) res)))))

您也可以只使用 Alexandria 中的 MAP-PRODUCT 函数:

CL-USER> (ql:quickload :alexandria)
;=> (:ALEXANDRIA)
CL-USER> (use-package :alexandria)
;=> T
CL-USER> (map-product #'list (list 1 2 3) (list 4 5))
;=> ((1 4) (1 5) (2 4) (2 5) (3 4) (3 5))

关于lisp - 这个lisp函数可以递归实现吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37976330/

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