closed by
256 views

Related questions

0 votes
0 votes
1 answer
1
3 votes
3 votes
1 answer
2
Kapil asked Jan 29, 2017
1,017 views
#include <stdio.h int main(void) { for(i=1;i<=n;i*=2) { for(j=0;j<=i;j++) { for(k=0;k<=n;k++) { ..... O(1)....; } } } return 0; }What is the time complexity of given code...
0 votes
0 votes
2 answers
3
omveer asked Sep 5, 2016
460 views
While(n>1){n=n/20;n=n/10;}Find time complexity.
1 votes
1 votes
2 answers
4
Anjana Babu asked Dec 21, 2016
521 views
Write C Program using Recursive Funtions for the Problem Described below and Analyse the Complexity Of the CodeProblemGiven an unordered array arr[] which contains n di...