方案中列表的定义

发布于 2024-10-17 17:26:26 字数 138 浏览 2 评论 0原文

终于尝试学习 Lisp 方言(Scheme),我遇到了列表的两个定义 -

“空列表或 cdr 是列表的对”。

“用括号括起来的 S 表达式的集合”。

这些定义等价吗?

Finally taking the plunge to learn a Lisp dialect (Scheme), I have encountered two definitions of a list -

"Either the empty list or a pair whose cdr is a list".

"A collection of S-Expressions enclosed by parentheses".

Are these definitions equivalent?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一绘本一梦想 2024-10-24 17:26:26

它们与 {'a','b','c'}"abc" 等价,

前者是机器对列表的逻辑表示,后者是你在代码中表示它的方式。

在方案中,你几乎可以将所有内容视为一个列表:)(有人会因此而对我投反对票,但当我尝试思考方案式时,我发现这是真的。)

They're as equivalent as {'a','b','c'} and "abc"

The former is the machine's logical representation of a list, the latter is how you represent it in your code.

And in scheme, you can pretty much treat everything as a list :) (Someone's going to downvote me for that, but I found it to be true when trying to think scheme-esque.)

吻风 2024-10-24 17:26:26

我要上演我最喜欢的狗和小马表演了!

树缺点细胞
(来源:hedgee.com

这对应于以下:

(let ((s5 (sqrt 5)))
  (/ (- (expt (/ (1+ s5) 2) n)
        (expt (/ (- 1 s5) 2) n)) s5))

该图说明了您的第一个语句(空列表对象表示为黑框)。代码片段说明了你的第二个。 :-)

I'm going to bring out my favourite dog-and-pony show!

Tree of cons cells
(source: hedgee.com)

This corresponds to the following:

(let ((s5 (sqrt 5)))
  (/ (- (expt (/ (1+ s5) 2) n)
        (expt (/ (- 1 s5) 2) n)) s5))

The diagram illustrates your first statement (the empty-list object is denoted as a black box). The code snippet illustrates your second. :-)

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