edited by
1,156 views

2 Answers

Best answer
2 2 votes

Solution

selected by
0 0 votes

Here you go - the actual solution is (log.logn)^2

Position:
Show:

Related questions

1 1 vote
0 0 answers
2.2k
2.2k views
syncronizing asked Mar 15, 2019
2,186 views
Is this the correct way to solve ?Q) int algorithm(int n){ int sum =0;k,j; for (k=0;k<n/2;k++) for(j=0;j<10;j++) sum++; return 4*algorithm(n/2)*algorit...
1 1 vote
1 1 answer
1.7k
1.7k views
VikramRB asked Jan 20, 2019
1,673 views
What is the time complexity of the following recurrence relation and step to derive the same$T(n) = T(\sqrt{n}) + log(logn)$
0 0 votes
2 2 answers
1.4k
1.4k views
Nidhi Budhraja asked Nov 29, 2018
1,368 views
What is the time complexity of T(n) = T(n/3) + T(n/9) +n?
1 1 vote
1 1 answer
6.0k
6.0k views
gmrishikumar asked Nov 22, 2018
6,010 views
int A(int n){ for(i = 1; i < n; i++) for(j = 1; j < i; j *= 2) for(k = j; k >= 1; k /= 2) if(n = 0) return 1; else...