Java TreeMap 相当于 C# 吗?
我咨询过的大多数地方都说使用SortedList,但问题是我正在移植的程序实际上使用了重复的键(按顺序区分),这是TreeMap允许的,但SortedList不允许。
有什么建议吗?
Most places I've consulted say to use SortedList, but the problem is that the program I'm porting actually uses duplicate keys (differentiated by order), which is permissible with TreeMap, but not SortedList.
Any advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
SortedDictionary 类有帮助吗?
Does SortedDictionary class help?
.NET 中红黑树的另一个出色实现可以在这里找到:
http://www.itu.dk/research/c5/
Another great implementation of a Red Black Tree in .NET can be found here:
http://www.itu.dk/research/c5/
我认为 C# 本身就没有这样的功能。 然而,有很多红黑实现的例子。 这是一个:-
http://www.codeproject.com/KB/recipes/redblackcs .aspx
I don't think C# has one natively. However there are plenty of examples of Red-Black implementations out there. Here is one:-
http://www.codeproject.com/KB/recipes/redblackcs.aspx
一般使用排序集
Generally use the sorted set