标签: time-complexity big-o complexity-theory
我有一个只需要在O(N / 2)时间内运行的算法(基本上它是一个仅运行超过一半元素的for循环)。
这如何简化大O符号? O(log n)?
答案 0 :(得分:2)
Big O符号会降低这些因素。 O(N/2) = O(1/2 * N)并简化为O(N)。
O(N/2) = O(1/2 * N)
O(N)
如果你想知道为什么要放弃这个因素,我会推荐你this other SO question。