Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • DSA
  • Algorithms
  • Analysis of Algorithms
  • Sorting
  • Searching
  • Greedy
  • Recursion
  • Backtracking
  • Dynamic Programming
  • Divide and Conquer
  • Geometric Algorithms
  • Mathematical Algorithms
  • Pattern Searching
  • Bitwise Algorithms
  • Branch & Bound
  • Randomized Algorithms
Open In App
Next Article:
Sample Practice Problems on Complexity Analysis of Algorithms
Next article icon

How to Analyse Loops for Complexity Analysis of Algorithms

Last Updated : 08 Mar, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

We have discussed Asymptotic Analysis,  Worst, Average and Best Cases and Asymptotic Notations in previous posts. In this post, an analysis of iterative programs with simple examples is discussed. 

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.

Example: 

  • swap() function has O(1) time complexity. 
  • 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 (int i = 1; i <= c; i++) {
    // some O(1) expressions
}
 
//This code is contributed by Kshitij
 
 

C




// Here c is a constant
for (int i = 1; i <= c; i++) {
    // some O(1) expressions
}
 
 

Java




// Here c is a constant
for (int i = 1; i <= c; i++) {
    // some O(1) expressions
}
 
// This code is contributed by Utkarsh
 
 

C#




// Here c is a positive constant
for (int i = 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 (var i = 1; i <= c; i++) {
    // some O(1) expressions
}
 
 

Python3




# Here c is a constant
for i in range(1, c+1):
    # some O(1) expressions
 
    # This code is contributed by Pushpesh Raj.
 
 

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 (int i = 1; i <= n; i = i + c) {
    // some O(1) expressions
}
 
for (int i = n; i > 0; i = i - c) {
    // some O(1) expressions
}
// This code is contributed by Kshitij
 
 

C




// Here c is a positive integer constant
for (int i = 1; i <= n; i += c) {
    // some O(1) expressions
}
 
for (int i = n; i > 0; i -= c) {
    // some O(1) expressions
}
 
 

Java




// Here c is a positive integer constant
for (int i = 1; i <= n; i += c) {
    // some O(1) expressions
}
   
for (int i = n; i > 0; i -= c) {
    // some O(1) expressions
}
 
// This code is contributed by Utkarsh
 
 

C#




for (int i = 1; i <= n; i = i + c) {
    // some O(1) expressions
 
    // O(1) expressions could be computations, assignments,
    // or other constant time operations
}
 
// Second loop: Decrementing by 'c' from n to 1
for (int i = n; i > 0; i = i - c) {
    // some O(1) expressions
 
    // O(1) expressions could be computations, assignments,
    // or other constant time operations
}
 
 

Javascript




// Here c is a positive integer constant
for (var i = 1; i <= n; i += c) {
    // some O(1) expressions
}
 
for (var i = n; i > 0; i -= c) {
    // some O(1) expressions
}
 
 

Python3




# Here c is a positive integer constant
for i in range(1, n+1, c):
    # some O(1) expressions
 
for i in range(n, 0, -c):
    # some O(1) expressions
 
    # This code is contributed by Pushpesh Raj
 
 

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.

C++




// Here c is any positive constant
for (int i = 1; i <= n; i += c) {
    for (int j = 1; j <= n; j += c) {
        // some O(1) expressions
    }
}
 
for (int i = n; i > 0; i -= c) {
    for (int j = i + 1; j <= n; j += c) {
        // some O(1) expressions
    }
}
 
for (int i = n; i > 0; i -= c) {
    for (int j = i - 1; j > 0; j -= c) {
        // some O(1) expressions
    }
}
// This code is contributed by Kshitij
 
 

C




for (int i = 1; i <= n; i += c) {
    for (int j = 1; j <= n; j += c) {
        // some O(1) expressions
    }
}
 
for (int i = n; i > 0; i -= c) {
    for (int j = i + 1; j <= n; j += c) {
        // some O(1) expressions
    }
}
 
 

Java




for (int i = 1; i <= n; i += c) {
    for (int j = 1; j <= n; j += c) {
        // some O(1) expressions
    }
}
   
for (int i = n; i > 0; i -= c) {
    for (int j = i + 1; j <= n; j += c) {
        // some O(1) expressions
    }
}
 
// This code is contributed by Utkarsh
 
 

C#




using System;
 
class Program {
    static void Main()
    {
        // Here c is any positive constant
        int n = 10; // You can replace 10 with your desired
                    // value of 'n'
        int c = 2; // You can replace 2 with your desired
                   // value of 'c'
 
        // First loop
        for (int i = 1; i <= n; i += c) {
            for (int j = 1; j <= n; j += c) {
                // some O(1) expressions
                Console.WriteLine("Expression at (" + i
                                  + ", " + j + ")");
            }
        }
 
        // Second loop
        for (int i = n; i > 0; i -= c) {
            for (int j = i + 1; j <= n; j += c) {
                // some O(1) expressions
                Console.WriteLine("Expression at (" + i
                                  + ", " + j + ")");
            }
        }
 
        // Third loop
        for (int i = n; i > 0; i -= c) {
            for (int j = i - 1; j > 0; j -= c) {
                // some O(1) expressions
                Console.WriteLine("Expression at (" + i
                                  + ", " + j + ")");
            }
        }
    }
}
 
 

Javascript




for (var i = 1; i <= n; i += c) {
    for (var j = 1; j <= n; j += c) {
        // some O(1) expressions
    }
}
 
for (var i = n; i > 0; i -= c) {
    for (var j = i + 1; j <= n; j += c) {
        // some O(1) expressions
    }
 }
 
 

Python3




for i in range(1, n+1, c):
    for j in range(1, n+1, c):
        # some O(1) expressions
 
for i in range(n, 0, -c):
    for j in range(i+1, n+1, c):
        # some O(1) expressions
 
        # This code is contributed by Pushpesh Raj
 
 

Example:  Selection sort and Insertion Sort have O(n2) time complexity. 

Logarithmic Time Complexity O(Log n):

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 (int i = 1; i <= n; i *= c) {
    // some O(1) expressions
}
for (int i = n; i > 0; i /= c) {
    // some O(1) expressions
}
 
// This code is contributed by Kshitij
 
 

C




for (int i = 1; i <= n; i *= c) {
    // some O(1) expressions
}
for (int i = n; i > 0; i /= c) {
    // some O(1) expressions
}
 
 

Java




for (int i = 1; i <= n; i *= c) {
    // some O(1) expressions
}
for (int i = n; i > 0; i /= c) {
    // some O(1) expressions
}
 
// This code is contributed by Utkarsh
 
 

C#




using System;
 
class Program {
    static void Main(string[] args)
    {
        int n = 10; // assuming n is some integer value
        int c = 2; // assuming c is some integer value
 
        // Loop to iterate through powers of c up to n
        for (int i = 1; i <= n; i *= c) {
            // O(1) expressions here
            Console.WriteLine("i = " + i);
        }
 
        // Loop to iterate through powers of c down from n
        for (int i = n; i > 0; i /= c) {
            // O(1) expressions here
            Console.WriteLine("i = " + i);
        }
    }
}
 
 

Javascript




for (var i = 1; i <= n; i *= c) {
    // some O(1) expressions
}
for (var i = n; i > 0; i /= c) {
    // some O(1) expressions
}
 
 

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
 
 

C++




// Recursive function
void recurse(int 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 Kshitij
 
 

C




// Recursive function
void recurse(int n)
{
    if (n <= 0)
        return;
    else {
        // some O(1) expressions
    }
    recurse(n/c);
  // Here c is positive integer constant greater than 1
}
 
 

Java




// Recursive function
void recurse(int 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 Utkarsh
 
 

C#




using System;
 
class Program {
    // Recursive function
    static void Recurse(int n, int c)
    {
        // Base case: If n is less than or equal to 0,
        // return
        if (n <= 0)
            return;
        else {
            // Perform some O(1) expressions
 
            // Recursive call with updated parameter (n/c)
            Recurse(n / c, c);
        }
    }
 
    static void Main()
    {
        int n = 10; // Example value for n
        int c = 2; // Example value for c
 
        // Function Call
        Recurse(n, c);
 
        Console.WriteLine("Recursive function executed.");
    }
}
 
 

Javascript




// Recursive function
function recurse(n)
{
    if (n <= 0)
        return;
    else {
        // some O(1) expressions
    }
    recurse(n/c);
 // Here c is positive integer constant greater than 1
}
 
 

Python3




# Recursive function
def recurse(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
 
 

Example: Binary Search(refer iterative implementation) has O(Logn) time complexity.

Logarithmic Time Complexity O(Log Log n):

The Time Complexity of a loop is considered as O(LogLogn) if the loop variables are reduced/increased exponentially by a constant amount. 

C++




// Here c is a constant greater than 1
for (int i = 2; i <= n; i = pow(i, c)) {
    // some O(1) expressions
}
// Here fun() is sqrt or cuberoot or any other constant root
for (int i = n; i > 1; i = fun(i)) {
    // some O(1) expressions
}
 
//This code is contributed by Kshitij
 
 

C




// Here c is a constant greater than 1
for (int i = 2; i <= n; i = pow(i, c)) {
    // some O(1) expressions
}
// Here fun is sqrt or cuberoot or any other constant root
for (int i = n; i > 1; i = fun(i)) {
    // some O(1) expressions
}
 
 

Java




// Here c is a constant greater than 1
for (int i = 2; i <= n; i = Math.pow(i, c)) {
    // some O(1) expressions
}
// Here fun is sqrt or cuberoot or any other constant root
for (int i = n; i > 1; i = fun(i)) {
    // some O(1) expressions
}
 
// This code is contributed by Utkarsh
 
 

C#




using System;
 
public class Main
{
    public static void Execute(string[] args)
    {
        int n = 100; // Example value of n
        int c = 2;   // Example value of c
        // Here c is a constant greater than 1
        for (int i = 2; i <= n; i = (int)Math.Pow(i, c))
        {
            // some O(1) expressions
            Console.WriteLine(i); // For demonstration
        }
 
        // Here fun() is sqrt or cuberoot or any other constant root
        for (int i = n; i > 1; i = fun(i))
        {
            // some O(1) expressions
            Console.WriteLine(i); // For demonstration
        }
    }
 
    // Function to find constant root (e.g., sqrt, cuberoot)
    public static int fun(int num)
    {
        // Here, let's consider finding the square root
        return (int)Math.Sqrt(num);
    }
}
 
 

Javascript




// Here c is a constant greater than 1
for (var i = 2; i <= n; i = i**c) {
    // some O(1) expressions
}
// Here fun is sqrt or cuberoot or any other constant root
for (var i = n; i > 1; i = fun(i)) {
    // some O(1) expressions
}
 
 

Python3




# Here c is a constant greater than 1
i = 2
while(i <= n):
    # some O(1) expressions
    i = i**c
 
# Here fun is sqrt or cuberoot or any other constant root
i = n
while(i > 1):
    # some O(1) expressions
    i = fun(i)
 
# This code is contributed by Pushpesh Raj
 
 

See this for mathematical details. 

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++




//Here c is any positive constant
for (int i = 1; i <= m; i += c) {
    // some O(1) expressions
}
for (int i = 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
 
 

C




for (int i = 1; i <= m; i += c) {
    // some O(1) expressions
}
for (int i = 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 (int i = 1; i <= m; i += c) {
    // some O(1) expressions
}
for (int i = 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
 
 

C#




// Here c is any positive constant
for (int i = 1; i <= m; i += c)
{
    // some O(1) expressions
}
for (int i = 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).
 
 

Javascript




for (var i = 1; i <= m; i += c) {
    // some O(1) expressions
}
for (var i = 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).
 
 

Python3




for i in range(1, m+1, c):
    # some O(1) expressions
 
for i in range(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).
 
 

  
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. 

Algorithms Cheat Sheet:

Algorithm Best Case Average Case Worst Case
Selection Sort O(n^2) O(n^2) O(n^2)
Bubble Sort O(n) O(n^2) O(n^2)
Insertion Sort O(n) O(n^2) O(n^2)
Tree Sort O(nlogn) O(nlogn) O(n^2)
Radix Sort O(dn) O(dn) O(dn)
Merge Sort O(nlogn) O(nlogn) O(nlogn)
Heap Sort O(nlogn) O(nlogn) O(nlogn)
Quick Sort O(nlogn) O(nlogn) O(n^2)
Bucket Sort O(n+k) O(n+k) O(n^2)
Counting Sort O(n+k) O(n+k) O(n+k)

Quiz on Analysis of Algorithms 
For more details, please refer: Design and Analysis of Algorithms.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.



Next Article
Sample Practice Problems on Complexity Analysis of Algorithms
author
kartik
Improve
Article Tags :
  • Algorithms
  • Analysis of Algorithms
  • DSA
  • Complexity-analysis
Practice Tags :
  • Algorithms

Similar Reads

  • Analysis of Algorithms
    Analysis of Algorithms is a fundamental aspect of computer science that involves evaluating performance of algorithms and programs. Efficiency is measured in terms of time and space. Basics on Analysis of Algorithms:Why is Analysis Important?Order of GrowthAsymptotic Analysis Worst, Average and Best
    1 min read
  • Complete Guide On Complexity Analysis - Data Structure and Algorithms Tutorial
    Complexity analysis is defined as a technique to characterise the time taken by an algorithm with respect to input size (independent from the machine, language and compiler). It is used for evaluating the variations of execution time on different algorithms. What is the need for Complexity Analysis?
    15+ min read
  • Why is Analysis of Algorithm important?
    Why is Performance of Algorithms Important ? There are many important things that should be taken care of, like user-friendliness, modularity, security, maintainability, etc. Why worry about performance? The answer to this is simple, we can have all the above things only if we have performance. So p
    2 min read
  • Types of Asymptotic Notations in Complexity Analysis of Algorithms
    We have discussed Asymptotic Analysis, and Worst, Average, and Best Cases of Algorithms. The main idea of asymptotic analysis is to have a measure of the efficiency of algorithms that don't depend on machine-specific constants and don't require algorithms to be implemented and time taken by programs
    8 min read
  • Worst, Average and Best Case Analysis of Algorithms
    In the previous post, we discussed how Asymptotic analysis overcomes the problems of the naive way of analyzing algorithms. Now let us learn about What is Worst, Average, and Best cases of an algorithm: 1. Worst Case Analysis (Mostly used) In the worst-case analysis, we calculate the upper bound on
    10 min read
  • Asymptotic Analysis
    Given two algorithms for a task, how do we find out which one is better? One naive way of doing this is - to implement both the algorithms and run the two programs on your computer for different inputs and see which one takes less time. There are many problems with this approach for the analysis of
    3 min read
  • How to Analyse Loops for Complexity Analysis of Algorithms
    We have discussed Asymptotic Analysis, Worst, Average and Best Cases and Asymptotic Notations in previous posts. In this post, an analysis of iterative programs with simple examples is discussed. The analysis of loops for the complexity analysis of algorithms involves finding the number of operation
    15+ min read
  • Sample Practice Problems on Complexity Analysis of Algorithms
    Prerequisite: Asymptotic Analysis, Worst, Average and Best Cases, Asymptotic Notations, Analysis of loops. Problem 1: Find the complexity of the below recurrence: { 3T(n-1), if n>0,T(n) = { 1, otherwise Solution: Let us solve using substitution. T(n) = 3T(n-1) = 3(3T(n-2)) = 32T(n-2) = 33T(n-3) .
    15 min read
  • Basics on Analysis of Algorithms

    • Why is Analysis of Algorithm important?
      Why is Performance of Algorithms Important ? There are many important things that should be taken care of, like user-friendliness, modularity, security, maintainability, etc. Why worry about performance? The answer to this is simple, we can have all the above things only if we have performance. So p
      2 min read

    • Asymptotic Analysis
      Given two algorithms for a task, how do we find out which one is better? One naive way of doing this is - to implement both the algorithms and run the two programs on your computer for different inputs and see which one takes less time. There are many problems with this approach for the analysis of
      3 min read

    • Worst, Average and Best Case Analysis of Algorithms
      In the previous post, we discussed how Asymptotic analysis overcomes the problems of the naive way of analyzing algorithms. Now let us learn about What is Worst, Average, and Best cases of an algorithm: 1. Worst Case Analysis (Mostly used) In the worst-case analysis, we calculate the upper bound on
      10 min read

    • Types of Asymptotic Notations in Complexity Analysis of Algorithms
      We have discussed Asymptotic Analysis, and Worst, Average, and Best Cases of Algorithms. The main idea of asymptotic analysis is to have a measure of the efficiency of algorithms that don't depend on machine-specific constants and don't require algorithms to be implemented and time taken by programs
      8 min read

    • How to Analyse Loops for Complexity Analysis of Algorithms
      We have discussed Asymptotic Analysis, Worst, Average and Best Cases and Asymptotic Notations in previous posts. In this post, an analysis of iterative programs with simple examples is discussed. The analysis of loops for the complexity analysis of algorithms involves finding the number of operation
      15+ min read

    • How to analyse Complexity of Recurrence Relation
      The analysis of the complexity of a recurrence relation involves finding the asymptotic upper bound on the running time of a recursive algorithm. This is usually done by finding a closed-form expression for the number of operations performed by the algorithm as a function of the input size, and then
      7 min read

    • Introduction to Amortized Analysis
      Amortized Analysis is used for algorithms where an occasional operation is very slow, but most other operations are faster. In Amortized Analysis, we analyze a sequence of operations and guarantee a worst-case average time that is lower than the worst-case time of a particularly expensive operation.
      10 min read

    Asymptotic Notations

    • Big O Notation Tutorial - A Guide to Big O Analysis
      Big O notation is a powerful tool used in computer science to describe the time complexity or space complexity of algorithms. Big-O is a way to express the upper bound of an algorithm’s time or space complexity. Describes the asymptotic behavior (order of growth of time or space in terms of input si
      10 min read

    • Big O vs Theta Θ vs Big Omega Ω Notations
      1. Big O notation (O): It defines an upper bound on order of growth of time taken by an algorithm or code with input size. Mathematically, if f(n) describes the running time of an algorithm; f(n) is O(g(n)) if there exist positive constant C and n0 such that, 0 <= f(n) <= Cg(n) for all n >=
      3 min read

    • Examples of Big-O analysis
      Prerequisite: Analysis of Algorithms | Big-O analysis In the previous article, the analysis of the algorithm using Big O asymptotic notation is discussed. In this article, some examples are discussed to illustrate the Big O time complexity notation and also learn how to compute the time complexity o
      13 min read

    • Difference between big O notations and tilde
      In asymptotic analysis of algorithms we often encounter terms like Big-Oh, Omega, Theta and Tilde, which describe the performance of an algorithm. You can refer to the following links to get more insights about asymptotic analysis : Analysis of Algorithms Different NotationsDifference between Big Oh
      4 min read

    • Analysis of Algorithms | Big-Omega Ω Notation
      In the analysis of algorithms, asymptotic notations are used to evaluate the performance of an algorithm, in its best cases and worst cases. This article will discuss Big-Omega Notation represented by a Greek letter (Ω). Table of Content What is Big-Omega Ω Notation?Definition of Big-Omega Ω Notatio
      9 min read

    • Analysis of Algorithms | Θ (Theta) Notation
      In the analysis of algorithms, asymptotic notations are used to evaluate the performance of an algorithm by providing an exact order of growth. This article will discuss Big - Theta notations represented by a Greek letter (Θ). Definition: Let g and f be the function from the set of natural numbers t
      6 min read

geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences