获取 TreeMap 的键集子集的简单方法(Java 中)

发布于 2024-07-13 15:17:57 字数 114 浏览 9 评论 0原文

是否可以从 TreeMap 中提取前 n 个(我使用 top 因为我相信 TreeMap 已排序)关键元素,而不使用 Iterator 对象进行迭代。

我可以进行迭代,但是必须检查空值等很乏味。

Is it possible to extract the top n (I use top because I believe a TreeMap is sorted) key elements from a TreeMap, without iterating using an Iterator object.

I can do the iteration but it's tedious to have to check for nulls etc.

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

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

发布评论

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

评论(3

秋意浓 2024-07-20 15:17:57

为什么要检查空值?

如果您使用 Google 收藏库,则可以使用 Iterables.limit

编辑:由于某种原因,GCL 页面不包含 limit,但它位于 Guava< /a> (实际上已经取代了 GCL) - 它仍然是 Iterables.limit

Why would you be checking for nulls?

If you use the Google Collections Library you can use Iterables.limit.

EDIT: For some reason the GCL page doesn't include limit, but it's in Guava (which has effectively replaced the GCL) - it's still Iterables.limit.

池木 2024-07-20 15:17:57

您可以使用 .subMap(low,high).keySet().headMap(high).keySet() 轻松获取从一个键到另一个键的键子集。

找出第 n 个正确的高调更加困难,因为没有直接的方法,而迭代是唯一可靠的方法。

(此代码未经测试

public <K,V> SortedMap<K,V> subMap(SortedMap<K,V> map, int n) {
  Iterator<K> it = map.keySet().iterator();
  for (int i = 0; i<n && it.hasNext(); i++) {
    it.next();
  }
  if (it.hasNext()) {
    return map.headMap(it.next());
  } else {
    return map
  }
}

You can easily get the subset of keys from one key up to another using .subMap(low,high).keySet() or .headMap(high).keySet().

Finding out the correct high key for the nth is harder, as there is no direct approach and iterating is the only sure-fire way.

(this code is untested)

public <K,V> SortedMap<K,V> subMap(SortedMap<K,V> map, int n) {
  Iterator<K> it = map.keySet().iterator();
  for (int i = 0; i<n && it.hasNext(); i++) {
    it.next();
  }
  if (it.hasNext()) {
    return map.headMap(it.next());
  } else {
    return map
  }
}
看透却不说透 2024-07-20 15:17:57

您可以使用:

[subMap 方法][1]

public NavigableMap<K,V> subMap(K fromKey,boolean fromInclusive,K toKey,boolean toInclusive)

[1]: http://java.sun.com/javase/6/docs/api/java/util/TreeMap.html#subMap(K,布尔值,K,布尔值)

you can use:

[subMap method][1]

public NavigableMap<K,V> subMap(K fromKey,boolean fromInclusive,K toKey,boolean toInclusive)

[1]: http://java.sun.com/javase/6/docs/api/java/util/TreeMap.html#subMap(K, boolean, K, boolean)

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