Question: What is the worst case time complexity for the algorithm g(n) below? State your answer as the best Big-Oh expression. long g(int n){ if(n
What is the worst case time complexity for the algorithm g(n) below? State your answer as the best Big-Oh expression.
long g(int n){
if(n <= 0) return 1;
else{
return g(n / 2) + g(n / 2) + g(n / 2) + g(n / 2);
}
}
(a) O(log n)
(b) O(n)
(c) O(n log n)
(d) O(n 2 )
(e) None of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
