标签: scheme lisp cons
语言方案/ LISP的具体内容是什么? 就像在这个函数中一样:
(DEFINE (guess list1 list2) (COND ((NULL? list1) '()) ((member (CAR list1) list2) (CONS (CAR list1) (guess (CDR list1) list2))) (ELSE (guess (CDR list1) list2)) ))
答案 0 :(得分:0)
cons