替换Scheme中列表中的元素

发布于 2024-09-29 09:08:21 字数 274 浏览 4 评论 0原文

我正在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酸甜透明夹心 2024-10-06 09:08:21

您可以使用类似于 ((a 1) (b 2) (c 3)) 的映射“关联列表”。

assq 可以检索匹配对。因此,对于原始列表中的所有内容,您可以使用 assq 查找它,然后替换它。

所以:

  (lambda (ls a-list)
    (map (lambda (x)
           (let ((lookup (assq x a-list)))
             (if lookup
                 (cadr lookup)
                 x)))
         ls)))

将采用一个列表和一个关联列表,并用其替换项(如果有的话)替换原始列表中的所有内容。

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 using assq and then replace it.

So:

  (lambda (ls a-list)
    (map (lambda (x)
           (let ((lookup (assq x a-list)))
             (if lookup
                 (cadr lookup)
                 x)))
         ls)))

Would take a list and an association list and replace everything in the original list with its replacement (if there is one).

只怪假的太真实 2024-10-06 09:08:21

这不是 let 要做的吗?

> (let ((a 1) (b 2) (c 3))
     (+ a b c b))
=> 8

如果您不想计算表达式:

> (let ((a 1) (b 2) (c 3))
    `(+ ,a ,b ,c ,a))
=> (+ 1 2 3 1)

Ain't this what let do?

> (let ((a 1) (b 2) (c 3))
     (+ a b c b))
=> 8

If you don't want to evaluate the expression:

> (let ((a 1) (b 2) (c 3))
    `(+ ,a ,b ,c ,a))
=> (+ 1 2 3 1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文