gpt4 book ai didi

scheme - 如何从 2 个列表创建关联列表?

转载 作者:行者123 更新时间:2023-12-03 18:27:37 24 4
gpt4 key购买 nike

在 DrScheme 中,如何从 2 个列表创建关联列表?

例如,我有,

y = ( 1 2 3 )
x = ( a b c )

而且我要
z = ((a 1) (b 2) (c 3))

最佳答案

假设方案(因为你的最后两个问题是关于方案):

(define x '(1 2 3))
(define y '(4 5 6))
(define (zip p q) (map list p q)) ;; <----
(display (zip x y))
;; ((1 4) (2 5) (3 6))

结果: http://www.ideone.com/DPjeM

关于scheme - 如何从 2 个列表创建关联列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4078678/

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