
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Interesting Time Complexity Question in C++
Time complexity can be defined as the time required by the algorithm to run its average case.
Let's see and calculate the time complexity of some of the basic functions.
Method
void counter(int n){ for(int i = 0 ; i < n ; i++){ for(int j = 1 ; j<n ; j += i ){ cout<<i<<” ”<<j; } cout<<endl; } }
The above method will run n/I times for all values of i. i.e. n times for the first iteration and 1 time for the last iteration.
According to this, the total time complexity is
(n/1 + n/2 + n/3 + …. + n/n) = n (1/1 + ½ + ? + …. 1/n)
Now the value of (1/1 + ½ + ? + …. 1/n) is equal to O(log n).
The time complexity of this code is O(nlogn).
Method
void counter(n){ int i , j ; for(int i = 1 ; i <= n ; i++){ for(j = 1; j <= log(i) ; j++){ cout<<i<<” ”<<j; } } }
The total complexity of the function is O(log 1) + O(log 2) + O(log 3) + …. + O(log n) which is O(log n!).
Advertisements