Java TreeMap 相当于 C# 吗?

发布于 2024-07-11 19:30:31 字数 108 浏览 8 评论 0原文

我咨询过的大多数地方都说使用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 技术交流群。

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

发布评论

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

评论(4

何以笙箫默 2024-07-18 19:30:31

SortedDictionary 类有帮助吗?

Does SortedDictionary class help?

落叶缤纷 2024-07-18 19:30:31

.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/

逐鹿 2024-07-18 19:30:31

我认为 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

兮子 2024-07-18 19:30:31

一般使用排序集

public class ItemComparer : IComparer<int[]>
{
    public int Compare(int[] item1, int[] item2)
    {
        if (item1[0] != item2[0]) return item1[0].CompareTo(item2[0]);
        return item1[1].CompareTo(item2[1]);
    }
}
var s = new SortedSet<int[]>(new ItemComparer());

Generally use the sorted set

public class ItemComparer : IComparer<int[]>
{
    public int Compare(int[] item1, int[] item2)
    {
        if (item1[0] != item2[0]) return item1[0].CompareTo(item2[0]);
        return item1[1].CompareTo(item2[1]);
    }
}
var s = new SortedSet<int[]>(new ItemComparer());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文