.Net 中是否有一个集合仅支持排序值。不需要钥匙吗?

发布于 2024-09-01 18:47:53 字数 105 浏览 2 评论 0原文

我正在寻找像树一样的东西。我们不断地插入到已经排序的集合中。我们希望获得最小值和最大值。我们不需要任何键,只需要值。我无法从 .Net 中找到任何树结构,也看不到任何其他看起来像我正在寻找的东西。

I am looking for something like a tree. We are constantly inserting into an already sorted collection. We would like access to the minimum and maximum value. We don't need any keys, just the value. I couldn't find any tree structures from .Net and I couldn't see any thing else that looked like what I am looking for.

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

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

发布评论

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

评论(1

小…红帽 2024-09-08 18:47:53

在.NET 4.0中有 SortedSet - 看起来这会做什么你想要的,它有 MinMax 属性。

.NET 3.5 有 HashSet,但它只处理相等而不是排序。

In .NET 4.0 there's SortedSet - it looks like that would do what you want, and it has Min and Max properties.

.NET 3.5 has HashSet, but that only deals with equality rather than ordering.

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