替换Scheme中列表中的元素
我正在Scheme 中寻找一个函数,用一个值替换方程中的元素。
示例: '(+ abca)
与 (1 2 3)
应该给我 '(+ 1 2 3 1)
。 (我不想解方程,这只是一个例子)
基本上,我想说 a=1, b=2, c=3
要继续,我提取变量我在另一个列表中的第一个列表。 然后,我收到了另一个列表中的预期值。 现在,我想给变量赋值。
关于我如何继续的任何提示? 多谢。
I'm looking for a function in Scheme to replace a element in an equation by a value.
Exemple : '(+ a b c a)
with (1 2 3)
should give me '(+ 1 2 3 1)
. (I don't want to resolve the equation, it was just an exemple)
Basically, I want to say that a=1, b=2, c=3
To proceed, I extract the variables of my first list in another list.
Then, I received the expected values in another list.
Now, I want to assign values to variables.
Any hints on how I proceed?
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用类似于
((a 1) (b 2) (c 3))
的映射“关联列表”。assq
可以检索匹配对。因此,对于原始列表中的所有内容,您可以使用assq
查找它,然后替换它。所以:
将采用一个列表和一个关联列表,并用其替换项(如果有的话)替换原始列表中的所有内容。
You can use an "association list" of mappings that looks like
((a 1) (b 2) (c 3))
.assq
can retrieve the matching pair. So, for everything in your original list, you can look it up usingassq
and then replace it.So:
Would take a list and an association list and replace everything in the original list with its replacement (if there is one).
这不是
let
要做的吗?如果您不想计算表达式:
Ain't this what
let
do?If you don't want to evaluate the expression: