查找第一个大于 SortedMap 的值
我想知道有什么更好的方法可以在大型 SortedMap 中找到大于输入值的第一个值,而不是循环遍历下面示例中的所有值。或者如果 SortedMap 是用于此目的的最佳结构。
这可以使用 google-collections 来实现吗? 提前致谢
public class mapTest {
public static void main(String[] args) {
SortedMap<Double, Object> sortedMap = new TreeMap<Double, Object>();
sortedMap.put(30d, "lala");
sortedMap.put(10d, "foo");
sortedMap.put(25d, "bar");
System.out.println("result: " + findFirstValueGreaterThan(sortedMap, 28d));
}
public static Object findFirstValueGreaterThan(SortedMap<Double, Object> sortedMap, Double value) {
for (Entry<Double, Object> entry : sortedMap.entrySet()) {
if (entry.getKey() > value) {
// return first value with a key greater than the inputted value
return entry.getValue();
}
}
return null;
}
}
I'd like to know what is there a better way to find the first value greater than an inputted value in a large SortedMap instead of looping through all values in my example below. Or if SortedMap is a the best structure to use for this.
Could this be achieved using google-collections?
Thanks in advance
public class mapTest {
public static void main(String[] args) {
SortedMap<Double, Object> sortedMap = new TreeMap<Double, Object>();
sortedMap.put(30d, "lala");
sortedMap.put(10d, "foo");
sortedMap.put(25d, "bar");
System.out.println("result: " + findFirstValueGreaterThan(sortedMap, 28d));
}
public static Object findFirstValueGreaterThan(SortedMap<Double, Object> sortedMap, Double value) {
for (Entry<Double, Object> entry : sortedMap.entrySet()) {
if (entry.getKey() > value) {
// return first value with a key greater than the inputted value
return entry.getValue();
}
}
return null;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这一切都在文档中:
ceilingKey( K键)
返回大于或等于给定键的最小键,如果没有这样的键,则返回 null。
因此,
应该
注意“大于”和“大于或等于”之间的区别。
It's all in the docs:
ceilingKey(K key)
Returns the least key greater than or equal to the given key, or null if there is no such key.
So,
should be
Pay attention at difference between "greater than" and "greater than or equal to", though.
这个解决方案只需要SortedMap。请注意,tailMap 通常不会创建新地图,因此速度很快。
This solution only requires SortedMap. Please note that tailMap typically doesn't create a new map, so it's fast.