gpt4 book ai didi

performance - 大 O : is the overall performance of `IterateArray` O(n) or O(n log n)?

转载 作者:行者123 更新时间:2023-12-03 18:07:23 27 4
gpt4 key购买 nike

如果我有以下代码:

IterateArray(object[] array)
{
for(int i=0; i<array.length; i++)
{
Dosomething(array[i]);
}
}

Dosomething(object)方法的时间性能是O(log n),是 IterateArray的整体性能O(n) 还是 O(n log n)?

最佳答案

简短且有些错误的答案是 O(n log n)。

长答案:将其写为 O(n log m ) 会更准确。

除非 DoSomething 真的依赖于整个数组,否则它看起来像是在单个元素上运行。所以我们单独区分,使用“m”。

关于performance - 大 O : is the overall performance of `IterateArray` O(n) or O(n log n)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1106083/

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