gpt4 book ai didi

Java 8 : map. 合并时间复杂度

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

我试图找到下面代码的复杂性,因为 for 循环它将是 O(n * complexity_of_map.merge)

public int solution(int K, int[] A) {    
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for(int i =0; i < A.length; i++){
map.merge(K - A[i], 1, Integer::sum);
}
return Arrays.stream(A).map(element -> map.getOrDefault(element,0)).sum();
}

谁能帮我理解上面代码和 map.merge() 的时间复杂度在 Java 8 中。

最佳答案

引自 JDK 8 的 Javadoc: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#merge-K-V-java.util.function.BiFunction-

The default implementation is equivalent to performing the following steps for this map, then returning the current value or null if absent:

V oldValue = map.get(key);
V newValue = (oldValue == null) ? value :
remappingFunction.apply(oldValue, value);
if (newValue == null)
map.remove(key);
else
map.put(key, newValue);

对于HashMapputremoveget都是O(1) >。您使用的 remappingFunctionInteger::sum ,与 n 无关。所以您解决方案中的 for 循环很简单 O(n)

对于stream操作,stream + map + sum应该大致相当于一个简单的for循环,O(n)。您传递给 map() 的 lambda 正在调用 map.getOrDefault,这对于 HashMap 也是 O(1) >。所以总体上也是 O(n)

所以你的解决方案很简单O(n)

关于Java 8 : map. 合并时间复杂度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44490454/

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