Algorithm 1. QUEUESTUFF(n)
Input: Integer n
1) Let Q = an empty Queue
2) For i = 1 to n
3) Q.Enqueue(i)
4) End For
5) For i = 1 to n-1
6) Let X = Q.Dequeue()
7) End For
8) Let X = Q.Dequeue()
Output: The contents of X
What is the computational complexity O(n) for algorithm QUEUESTUFF?
第一个 For 循环只是 n 的,第二个嵌套的循环是 n-1 的。那么这会使O(n):
O(2n-1) 只需执行 (n + n) - 1
还是通过 (n * n) - 1 执行 O(n^2 - 1)
感谢您的帮助,我只是想澄清一下。我的猜测是,因为我们有一个嵌套的 For 循环,我们必须将 n 乘以 n-1,但是我只是认为我可以通过获得其他人的意见来更好地保证自己。