gpt4 book ai didi

java - 查找大于 SortedMap 中的第一个值

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:02:38 25 4
gpt4 key购买 nike

我想知道有什么更好的方法可以在大型 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;
}
}

最佳答案

这一切都在文档中:

ceilingKey(K key)
Returns the least key greater than or equal to the given key, or null if there is no such key.

所以,

findFirstValueGreaterThan(sortedMap, 28d)

应该是

sortedMap.ceilingKey(28d)

注意“大于”和“大于等于”的区别。

关于java - 查找大于 SortedMap 中的第一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3740292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com