嵌套 for 循环的大 O:线性还是二次?

Big-O of Nested-for-loops: Linear or Quadratic?

我试图了解如何知道算法中的嵌套循环是否产生线性或二次 Big-Oh 复杂度。这是我想出的几个例子,但与蛮力循环和图遍历有关。我试着

我的思路正确吗?

示例 1:

N = ? // Number of elements in an array of integers
For i = 1 to N
    For j = 1 to N
        Print "foo"

示例 2:

N = ? // Number of elements in an array of integers
For i = 1 to log(N)
    For-each edge of log(N)
        Print "foo"

示例 3:

V = ? // Total number of nodes in a graph
E = ? // Total number of edges in a graph (not of each iteration-node)
For i = 1 to V
    For j = 1 to E
        Print "foo"

例4:

V = ? // Total number of nodes in a graph
For i = 1 to V
    For-each edge of V[i]
        Print "foo"

Big-O 表示法描述了算法的 运行ning 时间如何随着输入的大小而变化。

在示例 1 中,如果您将 N 硬编码为 20,则输入不会缩放。算法实际上变成了O(1).

示例 2 类似于您对示例 1 的直觉,除了每个循环只有 运行s log(n) 次迭代。

对于示例 3,我将其描述为 运行 在 O(mn) 时间内完成(m = 边数,n = 顶点数),而不是 O(n^2)

最后一个例子实际上比我最初给予它的信任稍微细微一些(谢谢,@Hurkyl!)。

边被顶点分割,所以除了 运行 外循环 |V| 次。这导致您的算法复杂度为 O(|V| + 2|E|)。常量在 big-o 表示法中通常被忽略,因此这被认为与 O(|V| + |E|).

相同