gpt4 book ai didi

list - 为什么 SML 中的列表串联是右结合的?

转载 作者:行者123 更新时间:2023-12-02 02:53:48 26 4
gpt4 key购买 nike

在厄尔曼的 SML 书中

Most unusual is that the :: (list cons) and @ (list concatenation) operators are right-associative, meaning that they group from the right instead of the left as do most operators we have seen.

我理解 cons 是右结合的原因:第二个操作数必须是一个列表,并且返回是一个列表。

鉴于 SML 中“我们见过的大多数运算符”都是左关联的,为什么 SML 中的列表串联是右关联的?

谢谢。

最佳答案

连接的成本与左操作数的长度成线性关系,因为必须复制它。因此,x @ (y @ z)(x @ y) @ z 便宜,因为后者会复制列表 x 两次.

此外,您有时会想要混合使用 cons 和 concat 运算符 (x @ y::z),如果它们具有不同的优先级或关联性,这会更加笨拙。

关于list - 为什么 SML 中的列表串联是右结合的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61528825/

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