The analysis of loops for the complexity analysis of algorithms involves finding the number of operations performed by a loop as a function of the input size. This is usually done by determining the number of iterations of the loop and the number of operations performed in each iteration.
Here are the general steps to analyze loops for complexity analysis:
Determine the number of iterations of the loop. This is usually done by analyzing the loop control variables and the loop termination condition.
Determine the number of operations performed in each iteration of the loop. This can include both arithmetic operations and data access operations, such as array accesses or memory accesses.
Express the total number of operations performed by the loop as a function of the input size. This may involve using mathematical expressions or finding a closed-form expression for the number of operations performed by the loop.
Determine the order of growth of the expression for the number of operations performed by the loop. This can be done by using techniques such as big O notation or by finding the dominant term and ignoring lower-order terms.
Constant Time Complexity O(1):
The time complexity of a function (or set of statements) is considered as O(1) if it doesn’t contain a loop, recursion, and call to any other non-constant time function. i.e. set of non-recursive and non-loop statements
In computer science, O(1) refers to constant time complexity, which means that the running time of an algorithm remains constant and does not depend on the size of the input. This means that the execution time of an O(1) algorithm will always take the same amount of time regardless of the input size. An example of an O(1) algorithm is accessing an element in an array using an index.
A loop or recursion that runs a constant number of times is also considered O(1). For example, the following loop is O(1).
C++
// Here c is a positive constant
for(inti = 1; i <= c; i++) {
// some O(1) expressions
}
//This code is contributed by Kshitij
C
// Here c is a constant
for(inti = 1; i <= c; i++) {
// some O(1) expressions
}
Java
// Here c is a constant
for(inti = 1; i <= c; i++) {
// some O(1) expressions
}
// This code is contributed by Utkarsh
Python3
# Here c is a constant
fori inrange(1, c+1):
# some O(1) expressions
# This code is contributed by Pushpesh Raj.
C#
// Here c is a positive constant
for(inti = 1; i <= c; i++) {
// This loop runs 'c' times and performs some constant-time operations in each iteration
// The time complexity of the loop is O(c)
// The time complexity of the loop body is O(1)
// The overall time complexity of this code is O(c)
// Note that the loop starts at i=1 and goes up to i=c (inclusive)
// The loop variable i is incremented by 1 in each iteration
// Example of an O(1) expression: int x = 1 + 2; // this takes constant time
}
Javascript
// Here c is a constant
for(vari = 1; i <= c; i++) {
// some O(1) expressions
}
Linear Time Complexity O(n):
The Time Complexity of a loop is considered as O(n) if the loop variables are incremented/decremented by a constant amount. For example following functions have O(n) time complexity. Linear time complexity, denoted as O(n), is a measure of the growth of the running time of an algorithm proportional to the size of the input. In an O(n) algorithm, the running time increases linearly with the size of the input. For example, searching for an element in an unsorted array or iterating through an array and performing a constant amount of work for each element would be O(n) operations. In simple words, for an input of size n, the algorithm takes n steps to complete the operation.
C
// Here c is a positive integer constant
for(inti = 1; i <= n; i += c) {
// some O(1) expressions
}
for(inti = n; i > 0; i -= c) {
// some O(1) expressions
}
Java
// Here c is a positive integer constant
for(inti = 1; i <= n; i += c) {
// some O(1) expressions
}
for(inti = n; i > 0; i -= c) {
// some O(1) expressions
}
// This code is contributed by Utkarsh
Python3
# Here c is a positive integer constant
fori inrange(1, n+1, c):
# some O(1) expressions
fori inrange(n, 0, -c):
# some O(1) expressions
# This code is contributed by Pushpesh Raj
Javascript
// Here c is a positive integer constant
for(vari = 1; i <= n; i += c) {
// some O(1) expressions
}
for(vari = n; i > 0; i -= c) {
// some O(1) expressions
}
C++
// Here c is a positive integer constant
for(inti = 1; i <= n; i = i + c) {
// some O(1) expressions
}
for(inti = n; i > 0; i = i - c) {
// some O(1) expressions
}
// This code is contributed by Kshitij
Quadratic Time Complexity O(nc):
The time complexity is defined as an algorithm whose performance is directly proportional to the squared size of the input data, as in nested loops it is equal to the number of times the innermost statement is executed. For example, the following sample loops have O(n2) time complexity
Quadratic time complexity, denoted as O(n^2), refers to an algorithm whose running time increases proportional to the square of the size of the input. In other words, for an input of size n, the algorithm takes n * n steps to complete the operation. An example of an O(n^2) algorithm is a nested loop that iterates over the entire input for each element, performing a constant amount of work for each iteration. This results in a total of n * n iterations, making the running time quadratic in the size of the input.
The time Complexity of a loop is considered as O(Logn) if the loop variables are divided/multiplied by a constant amount. And also for recursive calls in the recursive function, the Time Complexity is considered as O(Logn).
C
for(inti = 1; i <= n; i *= c) {
// some O(1) expressions
}
for(inti = n; i > 0; i /= c) {
// some O(1) expressions
}
Java
for(inti = 1; i <= n; i *= c) {
// some O(1) expressions
}
for(inti = n; i > 0; i /= c) {
// some O(1) expressions
}
// This code is contributed by Utkarsh
Python3
i =1
while(i <=n):
# some O(1) expressions
i =i*c
i =n
while(i > 0):
# some O(1) expressions
i =i//c
# This code is contributed by Pushpesh Raj
Javascript
for(vari = 1; i <= n; i *= c) {
// some O(1) expressions
}
for(vari = n; i > 0; i /= c) {
// some O(1) expressions
}
C++
for(inti = 1; i <= n; i *= c) {
// some O(1) expressions
}
for(inti = n; i > 0; i /= c) {
// some O(1) expressions
}
// This code is contributed by Kshitij
C
// Recursive function
voidrecurse(intn)
{
if(n <= 0)
return;
else{
// some O(1) expressions
}
recurse(n/c);
// Here c is positive integer constant greater than 1
}
Java
// Recursive function
voidrecurse(intn)
{
if(n <= 0)
return;
else{
// some O(1) expressions
}
recurse(n/c);
// Here c is positive integer constant greater than 1
}
// This code is contributed by Utkarsh
Python3
# Recursive function
defrecurse(n):
if(n <=0):
return
else:
# some O(1) expressions
recurse(n/c)
# Here c is positive integer constant greater than 1
# This code is contributed by Pushpesh Raj
Javascript
// Recursive function
functionrecurse(n)
{
if(n <= 0)
return;
else{
// some O(1) expressions
}
recurse(n/c);
// Here c is positive integer constant greater than 1
}
C++
// Recursive function
voidrecurse(intn)
{
if(n <= 0)
return;
else{
// some O(1) expressions
}
recurse(n/c);
// Here c is positive integer constant greater than 1
How to combine the time complexities of consecutive loops?
When there are consecutive loops, we calculate time complexity as a sum of the time complexities of individual loops.
To combine the time complexities of consecutive loops, you need to consider the number of iterations performed by each loop and the amount of work performed in each iteration. The total time complexity of the algorithm can be calculated by multiplying the number of iterations of each loop by the time complexity of each iteration and taking the maximum of all possible combinations.
For example, consider the following code:
for i in range(n):
for j in range(m):
# some constant time operation
Here, the outer loop performs n iterations, and the inner loop performs m iterations for each iteration of the outer loop. So, the total number of iterations performed by the inner loop is n * m, and the total time complexity is O(n * m).
In another example, consider the following code:
for i in range(n):
for j in range(i):
# some constant time operation
Here, the outer loop performs n iterations, and the inner loop performs i iterations for each iteration of the outer loop, where i is the current iteration count of the outer loop. The total number of iterations performed by the inner loop can be calculated by summing the number of iterations performed in each iteration of the outer loop, which is given by the formula sum(i) from i=1 to n, which is equal to n * (n + 1) / 2. Hence, the total time complex
C
for(inti = 1; i <= m; i += c) {
// some O(1) expressions
}
for(inti = 1; i <= n; i += c) {
// some O(1) expressions
}
// Time complexity of above code is O(m) + O(n) which is O(m + n)
// If m == n, the time complexity becomes O(2n) which is O(n).
Java
for(inti = 1; i <= m; i += c) {
// some O(1) expressions
}
for(inti = 1; i <= n; i += c) {
// some O(1) expressions
}
// Time complexity of above code is O(m) + O(n) which is O(m + n)
// If m == n, the time complexity becomes O(2n) which is O(n).
// This code is contributed by Utkarsh
Python3
fori inrange(1, m+1, c):
# some O(1) expressions
fori inrange(1, n+1, c):
# some O(1) expressions
# Time complexity of above code is O(m) + O(n) which is O(m + n)
# If m == n, the time complexity becomes O(2n) which is O(n).
Javascript
for(vari = 1; i <= m; i += c) {
// some O(1) expressions
}
for(vari = 1; i <= n; i += c) {
// some O(1) expressions
}
// Time complexity of above code is O(m) + O(n) which is O(m + n)
// If m == n, the time complexity becomes O(2n) which is O(n).
C++
//Here c is any positive constant
for(inti = 1; i <= m; i += c) {
// some O(1) expressions
}
for(inti = 1; i <= n; i += c) {
// some O(1) expressions
}
// Time complexity of above code is O(m) + O(n) which is O(m + n)
// If m == n, the time complexity becomes O(2n) which is O(n).
//This code is contributed by Kshitij
How to calculate time complexity when there are many if, else statements inside loops?
As discussed here, the worst-case time complexity is the most useful among best, average and worst. Therefore we need to consider the worst case. We evaluate the situation when values in if-else conditions cause a maximum number of statements to be executed. For example, consider the linear search function where we consider the case when an element is present at the end or not present at all. When the code is too complex to consider all if-else cases, we can get an upper bound by ignoring if-else and other complex control statements.
How to calculate the time complexity of recursive functions?
The time complexity of a recursive function can be written as a mathematical recurrence relation. To calculate time complexity, we must know how to solve recurrences. We will soon be discussing recurrence-solving techniques as a separate post.
Feeling lost in the world of random DSA topics, wasting time without progress? It’s time for a change! Join our DSA course, where we’ll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 neveropen!