gpt4 book ai didi

conditional - Cond inside let 不能正常工作

转载 作者:行者123 更新时间:2023-12-01 23:28:10 25 4
gpt4 key购买 nike

我在处理一些 Common Lisp 代码时遇到了问题。我有两个类似于以下功能的功能:

(defun recursive-func (func lst num)
(let ((test
(some-func func
(first lst)
(first (rest lst))
num))
(next
(recursive-func func
(rest lst)
num)))

(cond ((null (rest lst)) nil)
((null test) next)
(t (cons test next)))))

(defun some-func (func a b num)
(if (> a b)
nil
(funcall func a b num)))

当列表只有一个元素时,我希望 recursive-func 返回 nil,但它没有返回并调用 some-func 生成a 评估中止,因为 bnil。这是执行的痕迹:

CL-USER> (recursive-func #'(lambda(x y z) (+ x y z)) '(1 2 3 4 5) 5)
0: (RECURSIVE-FUNC #<FUNCTION (LAMBDA (X Y Z)) {10035F6ABB}> (1 2 3 4 5) 5)
1: (SOME-FUNC #<FUNCTION (LAMBDA (X Y Z)) {10035F6ABB}> 1 2 5)
1: SOME-FUNC returned 8
1: (RECURSIVE-FUNC #<FUNCTION (LAMBDA (X Y Z)) {10035F6ABB}> (2 3 4 5) 5)
2: (SOME-FUNC #<FUNCTION (LAMBDA (X Y Z)) {10035F6ABB}> 2 3 5)
2: SOME-FUNC returned 10
2: (RECURSIVE-FUNC #<FUNCTION (LAMBDA (X Y Z)) {10035F6ABB}> (3 4 5) 5)
3: (SOME-FUNC #<FUNCTION (LAMBDA (X Y Z)) {10035F6ABB}> 3 4 5)
3: SOME-FUNC returned 12
3: (RECURSIVE-FUNC #<FUNCTION (LAMBDA (X Y Z)) {10035F6ABB}> (4 5) 5)
4: (SOME-FUNC #<FUNCTION (LAMBDA (X Y Z)) {10035F6ABB}> 4 5 5)
4: SOME-FUNC returned 14
4: (RECURSIVE-FUNC #<FUNCTION (LAMBDA (X Y Z)) {10035F6ABB}> (5) 5)
5: (SOME-FUNC #<FUNCTION (LAMBDA (X Y Z)) {10035F6ABB}> 5 NIL 5)
; Evaluation aborted on #<TYPE-ERROR expected-type: NUMBER datum: NIL>.

希望有人能帮帮我,谢谢。

最佳答案

首先评估 let 中的绑定(bind),然后才执行 cond 中的测试。你只需要改变一点:

(defun recursive-func (func list num)
(if (null (rest list))
nil
(let ((test (some-func func
(first list)
(first (rest list))
num))
(next (recursive-func func
(rest list)
num)))
(cond ((null test) next)
(t (cons test next))))))

注意 cond 也可以这样写:

(if test (cons test next) next)

以你的例子:

(recursive-func (lambda (x y z) (+ x y z))
'(1 2 3 4 5)
5)
=> (8 10 12 14)

或者,您可以通过以下方式分解任务(在 REPL 中):

> (maplist (lambda (list)
(list
(first list)
(second list)))
'(1 2 3 4 5))
=> ((1 2) (2 3) (3 4) (4 5) (5 NIL))

首选 SECOND而不是 (first (rest ...))。最后的结果在 REPL 中绑定(bind)到变量 * .用 BUTLAST 删除最后一个(无用的)对:

(butlast *)
=> ((1 2) (2 3) (3 4) (4 5))

然后,对于这个列表中的每一对,调用你的函数——在这里它只是 + .注意使用 DESTRUCTURING-BIND :

(mapcar (lambda (list)
(destructuring-bind (a b) list
(+ a b 5)))
*)
=> (8 10 12 14)

所以,基本上,您的函数可以写成:

(defun map-pair-funcall (function list number)
(mapcar (lambda (pair)
(destructuring-bind (a b) pair
(funcall function a b number)))
(butlast (maplist (lambda (list)
(list (first list) (second list)))
list))))

因此:

(map-pair-funcall #'+ '(1 2 3 4 5) 5)
=> (8 10 12 14)

编辑:

我错过了提供的函数可能返回 NIL 的情况。通过 (remove NIL (mapcar ...)) 包装调用 mapcar 的表单以过滤掉它。


您可以使用 MAPCON 在一次迭代中执行所有这些操作.该函数遍历子列表,并连接结果列表。因此,被调用的函数应该返回列表,当您返回 NIL 时,结果将被简单地丢弃。

让我们定义 ensure-list(或使用 Alexandria 中的那个):

(defun ensure-list (expr)
(if (listp expr) expr (list expr)))

该函数将返回值包装在一个列表中,除非它已经是一个列表(特别是 NIL)。然后,函数定义如下:

(defun map-pair-funcall (function list number)
(mapcon (lambda (list)
(and (second list)
(ensure-list (funcall function
(first list)
(second list)
number))))
list))

你也可以 LOOP :

(defun map-pair-funcall (function list number)
(loop
for (a b) on list
for result = (and b (funcall function a b number))
when result
collect result))

关于conditional - Cond inside let 不能正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48945106/

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