是 F# 映射上的迭代还是集合中序遍历?

发布于 2024-09-04 17:20:28 字数 93 浏览 3 评论 0原文

AFAIK,F# Map 和 set 被实现为红黑树,所以我猜这些的迭代将是有序遍历。我做了一些测试,迭代结果总是排序的。但我想确定一下。

是按顺序遍历吗?

AFAIK, F# Map and set are implemented as red-black trees, so I guess that an iteration on these would be in-order traversal. I did some test and the iteration results are always sorted. But I want to make it sure.

Is it in-order traversal?

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

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

发布评论

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

评论(2

洒一地阳光 2024-09-11 17:20:28

The documentation on MSDN is pretty good for figuring this out. For instance, the return value for Set.toSeq is "An ordered sequence of the elements of set." It looks like the answer to your question is yes, for both maps and sets.

烟若柳尘 2024-09-11 17:20:28

据我所知,F# Map 和 Set 是作为红黑树实现的

AVL 树。

是中序遍历吗?

是的。

AFAIK, F# Map and set are implemented as red-black trees

AVL trees.

Is it in-order traversal?

Yes.

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