The running time of the following algorithm
Procedure A(n) If n <= 2 return(1) else return A();
is best described by
(A) O(n)
(B) O(log n)
(C) O(1og log n)
(D) O(1)
Answer: (C)
Explanation: For explanation, please see question 5 of this post
The running time of the following algorithm
Procedure A(n) If n <= 2 return(1) else return A();
is best described by
(A) O(n)
(B) O(log n)
(C) O(1og log n)
(D) O(1)
Answer: (C)
Explanation: For explanation, please see question 5 of this post
© NeverOpen 2022