对具有 2 个字段的 HashMap 进行排序

发布于 2024-11-18 23:27:56 字数 90 浏览 1 评论 0原文

我有一个包含 8 个字段的哈希图。其中 2 个是 id 和 idseq。两者都是整数。相似的idseq可以有多个,但不能有一个id。这个搭扣图可以根据这两个来排序吗?

I have a hashmap with 8 fields. Among those 2 are id and idseq. Both are integer. There can be more than one similar idseq, but not for one id. Can this hasp map be sorted on the basis of these 2?

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

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

发布评论

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

评论(3

只是偏爱你 2024-11-25 23:27:56

创建一个包含这两个整数值的键,并将其用作地图的键。使此键可比较并实现排序逻辑那里。

像这样的东西:

class MyCustomKey implements Comparable<MyCustomKey> {
    final int id;
    final int idSeq;

    public MyCustomKey(int id, int idSeq) {
        this.id = id;
        this.idSeq = idSeq;
    }

    public int getId() {
        return this.id;
    }

    public int getIdSeq() {
        return this.idSeq;
    }

    @Override
    public int compareTo(MyCustomKey o) {
        // your compare logic goes here
        return -1;
    }
}

然后您可以使用它作为地图的密钥,最好是 TreeMap 如果应该排序。

Create a key containing these two integer values and use that as a key for your map. Make this key Comparable and implement your sorting logic there.

Something like this:

class MyCustomKey implements Comparable<MyCustomKey> {
    final int id;
    final int idSeq;

    public MyCustomKey(int id, int idSeq) {
        this.id = id;
        this.idSeq = idSeq;
    }

    public int getId() {
        return this.id;
    }

    public int getIdSeq() {
        return this.idSeq;
    }

    @Override
    public int compareTo(MyCustomKey o) {
        // your compare logic goes here
        return -1;
    }
}

You can then use this as the key for your map, preferably a TreeMap if it should be sorted.

痴者 2024-11-25 23:27:56

使用 TreeMap 代替自定义比较器,您应该将其传递给其构造函数。

Use a TreeMap instead with custom Comparator which you should pass to its constructor.

单调的奢华 2024-11-25 23:27:56

我们可以使用这样的树形图:

TreeMap<Integer,DRG> sortedMap = new TreeMap<Integer,DRG>();

 sortedMap.putAll(hashmap);

树形图将处理其余的事情。可以使用树形图恢复数据库中表示的值的顺序。

We can use a Tree map like this:

TreeMap<Integer,DRG> sortedMap = new TreeMap<Integer,DRG>();

 sortedMap.putAll(hashmap);

Treemap will take care of the rest. The order of values as represented in the database can be restored by using a Tree map.

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