.Net 中是否有一个集合仅支持排序值。不需要钥匙吗?
我正在寻找像树一样的东西。我们不断地插入到已经排序的集合中。我们希望获得最小值和最大值。我们不需要任何键,只需要值。我无法从 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在.NET 4.0中有 SortedSet - 看起来这会做什么你想要的,它有
Min
和Max
属性。.NET 3.5 有
HashSet
,但它只处理相等而不是排序。In .NET 4.0 there's SortedSet - it looks like that would do what you want, and it has
Min
andMax
properties..NET 3.5 has
HashSet
, but that only deals with equality rather than ordering.