获取 TreeMap 的键集子集的简单方法(Java 中)
是否可以从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为什么要检查空值?
如果您使用 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 stillIterables.limit
.您可以使用
.subMap(low,high).keySet()
或.headMap(high).keySet()
轻松获取从一个键到另一个键的键子集。找出第 n 个正确的高调更加困难,因为没有直接的方法,而迭代是唯一可靠的方法。
(此代码未经测试)
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)
您可以使用:
[subMap 方法][1]
[1]: http://java.sun.com/javase/6/docs/api/java/util/TreeMap.html#subMap(K,布尔值,K,布尔值)
you can use:
[subMap method][1]
[1]: http://java.sun.com/javase/6/docs/api/java/util/TreeMap.html#subMap(K, boolean, K, boolean)