Time Complexity and Space Complexity
Last Updated :
05 Dec, 2024
Many times there are more than one ways to solve a problem with different algorithms and we need a way to compare multiple ways. Also, there are situations where we would like to know how much time and resources an algorithm might take when implemented. To measure performance of algorithms, we typically use time and space complexity analysis. The idea is to measure order of growths in terms of input size.
- Independent of the machine and its configuration, on which the algorithm is running on.
- Shows a direct correlation with the number of inputs.
- Can distinguish two algorithms clearly without ambiguity.
Time Complexity: The time complexity of an algorithm quantifies the amount of time taken by an algorithm to run as a function of the length of the input. Note that the time to run is a function of the length of the input and not the actual execution time of the machine on which the algorithm is running on.
The valid algorithm takes a finite amount of time for execution. The time required by the algorithm to solve given problem is called time complexity of the algorithm. Time complexity is very useful measure in algorithm analysis.
It is the time needed for the completion of an algorithm. To estimate the time complexity, we need to consider the cost of each fundamental instruction and the number of times the instruction is executed.
Example 1: Addition of two scalar variables.
Algorithm ADD SCALAR(A, B)
//Description: Perform arithmetic addition of two numbers
//Input: Two scalar variables A and B
//Output: variable C, which holds the addition of A and B
C <- A + B
return C
The addition of two scalar numbers requires one addition operation. the time complexity of this algorithm is constant, so T(n) = O(1) .
In order to calculate time complexity on an algorithm, it is assumed that a constant time c is taken to execute one operation, and then the total operations for an input length on N are calculated. Consider an example to understand the process of calculation: Suppose a problem is to find whether a pair (X, Y) exists in an array, A of N elements whose sum is Z. The simplest idea is to consider every pair and check if it satisfies the given condition or not.
The pseudo-code is as follows:
int a[n];
for(int i = 0;i < n;i++)
cin >> a[i]
for(int i = 0;i < n;i++)
for(int j = 0;j < n;j++)
if(i!=j && a[i]+a[j] == z)
return true
return false
Below is the implementation of the above approach:
C++
// C++ program for the above approach
#include <bits/stdc++.h>
using namespace std;
// Function to find a pair in the given
// array whose sum is equal to z
bool findPair(int a[], int n, int z)
{
// Iterate through all the pairs
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
// Check if the sum of the pair
// (a[i], a[j]) is equal to z
if (i != j && a[i] + a[j] == z)
return true;
return false;
}
// Driver Code
int main()
{
// Given Input
int a[] = { 1, -2, 1, 0, 5 };
int z = 0;
int n = sizeof(a) / sizeof(a[0]);
// Function Call
if (findPair(a, n, z))
cout << "True";
else
cout << "False";
return 0;
}
Java
// Java program for the above approach
import java.lang.*;
import java.util.*;
class GFG{
// Function to find a pair in the given
// array whose sum is equal to z
static boolean findPair(int a[], int n, int z)
{
// Iterate through all the pairs
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
// Check if the sum of the pair
// (a[i], a[j]) is equal to z
if (i != j && a[i] + a[j] == z)
return true;
return false;
}
// Driver code
public static void main(String[] args)
{
// Given Input
int a[] = { 1, -2, 1, 0, 5 };
int z = 0;
int n = a.length;
// Function Call
if (findPair(a, n, z))
System.out.println("True");
else
System.out.println("False");
}
}
// This code is contributed by avijitmondal1998
Python
# Python3 program for the above approach
# Function to find a pair in the given
# array whose sum is equal to z
def findPair(a, n, z) :
# Iterate through all the pairs
for i in range(n) :
for j in range(n) :
# Check if the sum of the pair
# (a[i], a[j]) is equal to z
if (i != j and a[i] + a[j] == z) :
return True
return False
# Driver Code
# Given Input
a = [ 1, -2, 1, 0, 5 ]
z = 0
n = len(a)
# Function Call
if (findPair(a, n, z)) :
print("True")
else :
print("False")
# This code is contributed by splevel62.
C#
// C# program for above approach
using System;
class GFG{
// Function to find a pair in the given
// array whose sum is equal to z
static bool findPair(int[] a, int n, int z)
{
// Iterate through all the pairs
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
// Check if the sum of the pair
// (a[i], a[j]) is equal to z
if (i != j && a[i] + a[j] == z)
return true;
return false;
}
// Driver Code
static void Main()
{
// Given Input
int[] a = { 1, -2, 1, 0, 5 };
int z = 0;
int n = a.Length;
// Function Call
if (findPair(a, n, z))
Console.WriteLine("True");
else
Console.WriteLine("False");
}
}
// This code is contributed by sanjoy_62.
JavaScript
<script>
// JavaScript program for the above approach
// Function to find a pair in the given
// array whose sum is equal to z
function findPair(a, n, z)
{
// Iterate through all the pairs
for(let i = 0; i < n; i++)
for(let j = 0; j < n; j++)
// Check if the sum of the pair
// (a[i], a[j]) is equal to z
if (i != j && a[i] + a[j] == z)
return true;
return false;
}
// Driver Code
// Given Input
let a = [ 1, -2, 1, 0, 5 ];
let z = 0;
let n = a.length;
// Function Call
if (findPair(a, n, z))
document.write("True");
else
document.write("False");
// This code is contributed by code_hunt
</script>
Assuming that each of the operations in the computer takes approximately constant time, let it be c. The number of lines of code executed actually depends on the value of Z. During analyses of the algorithm, mostly the worst-case scenario is considered, i.e., when there is no pair of elements with sum equals Z. In the worst case,
- N*c operations are required for input.
- The outer loop i loop runs N times.
- For each i, the inner loop j loop runs N times.
So total execution time is N*c + N*N*c + c. Now ignore the lower order terms since the lower order terms are relatively insignificant for large input, therefore only the highest order term is taken (without constant) which is N*N in this case. Different notations are used to describe the limiting behavior of a function, but since the worst case is taken so big-O notation will be used to represent the time complexity.
Hence, the time complexity is O(N2) for the above algorithm. Note that the time complexity is solely based on the number of elements in array A i.e the input length, so if the length of the array will increase the time of execution will also increase.
Order of growth is how the time of execution depends on the length of the input. In the above example, it is clearly evident that the time of execution quadratically depends on the length of the array. Order of growth will help to compute the running time with ease.
Another Example: Let's calculate the time complexity of the below algorithm:
C++
count = 0
for (int i = N; i > 0; i /= 2)
for (int j = 0; j < i; j++)
count++;
Java
int count = 0 ;
for (int i = N; i > 0; i /= 2)
for (int j = 0; j < i; j++)
count++;
//This code is contributed by Shubham Singh
Python
count = 0
i = N
while(i > 0):
for j in range(i):
count+=1
i /= 2
# This code is contributed by subhamsingh10
C#
int count = 0 ;
for (int i = N; i > 0; i /= 2)
for (int j = 0; j < i; j++)
count++;
// This code is contributed by Shubham Singh
JavaScript
let count = 0
for(let i = N; i > 0; i /= 2)
for(let j = 0; j < i; j++)
count += 1;
// This code is contributed by Shubham Singh
This is a tricky case. In the first look, it seems like the complexity is O(N * log N). N for the j′s loop and log(N) for i′s loop. But it's wrong. Let's see why.
Think about how many times count++ will run.
- When i = N, it will run N times.
- When i = N / 2, it will run N / 2 times.
- When i = N / 4, it will run N / 4 times.
- And so on.
The total number of times count++ will run is N + N/2 + N/4+...+1= 2 * N. So the time complexity will be O(N).
Some general time complexities are listed below with the input range for which they are accepted in competitive programming:
Input Length | Worst Accepted Time Complexity | Usually type of solutions |
10 -12 | O(N!) | Recursion and backtracking |
15-18 | O(2N * N) | Recursion, backtracking, and bit manipulation |
18-22 | O(2N * N) | Recursion, backtracking, and bit manipulation |
30-40 | O(2N/2 * N) | Meet in the middle, Divide and Conquer |
100 | O(N4) | Dynamic programming, Constructive |
400 | O(N3) | Dynamic programming, Constructive |
2K | O(N2* log N) | Dynamic programming, Binary Search, Sorting, Divide and Conquer |
10K | O(N2) | Dynamic programming, Graph, Trees, Constructive |
1M | O(N* log N) | Sorting, Binary Search, Divide and Conquer |
100M | O(N), O(log N), O(1) | Constructive, Mathematical, Greedy Algorithms |
Space Complexity:
Definition -
Problem-solving using computer requires memory to hold temporary data or final result while the program is in execution. The amount of memory required by the algorithm to solve given problem is called space complexity of the algorithm.
The space complexity of an algorithm quantifies the amount of space taken by an algorithm to run as a function of the length of the input. Consider an example: Suppose a problem to find the frequency of array elements.
It is the amount of memory needed for the completion of an algorithm.
To estimate the memory requirement we need to focus on two parts:
(1) A fixed part: It is independent of the input size. It includes memory for instructions (code), constants, variables, etc.
(2) A variable part: It is dependent on the input size. It includes memory for recursion stack, referenced variables, etc.
Example : Addition of two scalar variables
Algorithm ADD SCALAR(A, B)
//Description: Perform arithmetic addition of two numbers
//Input: Two scalar variables A and B
//Output: variable C, which holds the addition of A and B
C <— A+B
return C
The addition of two scalar numbers requires one extra memory location to hold the result. Thus the space complexity of this algorithm is constant, hence S(n) = O(1).
The pseudo-code is as follows:
int freq[n];
int a[n];
for(int i = 0; i<n; i++)
{
cin>>a[i];
freq[a[i]]++;
}
Below is the implementation of the above approach:
C++
// C++ program for the above approach
#include <bits/stdc++.h>
using namespace std;
// Function to count frequencies of array items
void countFreq(int arr[], int n)
{
unordered_map<int, int> freq;
// Traverse through array elements and
// count frequencies
for (int i = 0; i < n; i++)
freq[arr[i]]++;
// Traverse through map and print frequencies
for (auto x : freq)
cout << x.first << " " << x.second << endl;
}
// Driver Code
int main()
{
// Given array
int arr[] = { 10, 20, 20, 10, 10, 20, 5, 20 };
int n = sizeof(arr) / sizeof(arr[0]);
// Function Call
countFreq(arr, n);
return 0;
}
Java
// Java program for the above approach
import java.util.*;
class GFG{
// Function to count frequencies of array items
static void countFreq(int arr[], int n)
{
HashMap<Integer,Integer> freq = new HashMap<>();
// Traverse through array elements and
// count frequencies
for (int i = 0; i < n; i++) {
if(freq.containsKey(arr[i])){
freq.put(arr[i], freq.get(arr[i])+1);
}
else{
freq.put(arr[i], 1);
}
}
// Traverse through map and print frequencies
for (Map.Entry<Integer,Integer> x : freq.entrySet())
System.out.print(x.getKey()+ " " + x.getValue() +"\n");
}
// Driver Code
public static void main(String[] args)
{
// Given array
int arr[] = { 10, 20, 20, 10, 10, 20, 5, 20 };
int n = arr.length;
// Function Call
countFreq(arr, n);
}
}
// This code is contributed by gauravrajput1
Python
# Python program for the above approach
# Function to count frequencies of array items
def countFreq(arr, n):
freq = dict()
# Traverse through array elements and
# count frequencies
for i in arr:
if i not in freq:
freq[i] = 0
freq[i]+=1
# Traverse through map and print frequencies
for x in freq:
print(x, freq[x])
# Driver Code
# Given array
arr = [10, 20, 20, 10, 10, 20, 5, 20 ]
n = len(arr)
# Function Call
countFreq(arr, n)
# This code is contributed by Shubham Singh
C#
// C# program for the above approach
using System;
using System.Collections.Generic;
public class GFG {
// Function to count frequencies of array items
static void countFreq(int[] arr, int n)
{
Dictionary<int, int> freq
= new Dictionary<int, int>();
// Traverse through array elements and count
// frequencies
for (int i = 0; i < n; i++) {
if (freq.ContainsKey(arr[i])) {
freq[arr[i]] += 1;
}
else {
freq.Add(arr[i], 1);
}
}
// Traverse through dictionary and print frequencies
foreach(KeyValuePair<int, int> x in freq)
{
Console.WriteLine(x.Key + " " + x.Value);
}
}
static public void Main()
{
// Given array
int[] arr = { 10, 20, 20, 10, 10, 20, 5, 20 };
int n = arr.Length;
// Function Call
countFreq(arr, n);
}
}
// This code is contributed by lokeshmvs21
JavaScript
<script>
// Javascript program for the above approach
// Function to count frequencies of array items
function countFreq(arr, n) {
let freq = new Map();
arr.sort((a, b) => a - b)
// Traverse through array elements and
// count frequencies
for (let i = 0; i < n; i++) {
if (freq.has(arr[i])) {
freq.set(arr[i], freq.get(arr[i]) + 1)
} else {
freq.set(arr[i], 1)
}
}
// Traverse through map and print frequencies
for (let x of freq)
document.write(x[0] + " " + x[1] + "<br>");
}
// Driver Code
// Given array
let arr = [10, 20, 20, 10, 10, 20, 5, 20];
let n = arr.length;
// Function Call
countFreq(arr, n);
// This code is contributed by Saurabh Jaiswal
</script>
Here two arrays of length N, and variable i are used in the algorithm so, the total space used is N * c + N * c + 1 * c = 2N * c + c, where c is a unit space taken. For many inputs, constant c is insignificant, and it can be said that the space complexity is O(N).
There is also auxiliary space, which is different from space complexity. The main difference is where space complexity quantifies the total space used by the algorithm, auxiliary space quantifies the extra space that is used in the algorithm apart from the given input. In the above example, the auxiliary space is the space used by the freq[] array because that is not part of the given input. So total auxiliary space is N * c + c which is O(N) only.
Similar Reads
DSA Tutorial - Learn Data Structures and Algorithms
DSA (Data Structures and Algorithms) is the study of organizing data efficiently using data structures like arrays, stacks, and trees, paired with step-by-step procedures (or algorithms) to solve problems effectively. Data structures manage how data is stored and accessed, while algorithms focus on
7 min read
Quick Sort
QuickSort is a sorting algorithm based on the Divide and Conquer that picks an element as a pivot and partitions the given array around the picked pivot by placing the pivot in its correct position in the sorted array. It works on the principle of divide and conquer, breaking down the problem into s
12 min read
Merge Sort - Data Structure and Algorithms Tutorials
Merge sort is a popular sorting algorithm known for its efficiency and stability. It follows the divide-and-conquer approach. It works by recursively dividing the input array into two halves, recursively sorting the two halves and finally merging them back together to obtain the sorted array. Merge
14 min read
Bubble Sort Algorithm
Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order. This algorithm is not suitable for large data sets as its average and worst-case time complexity are quite high.We sort the array using multiple passes. After the fir
8 min read
Breadth First Search or BFS for a Graph
Given a undirected graph represented by an adjacency list adj, where each adj[i] represents the list of vertices connected to vertex i. Perform a Breadth First Search (BFS) traversal starting from vertex 0, visiting vertices from left to right according to the adjacency list, and return a list conta
15+ min read
Data Structures Tutorial
Data structures are the fundamental building blocks of computer programming. They define how data is organized, stored, and manipulated within a program. Understanding data structures is very important for developing efficient and effective algorithms. What is Data Structure?A data structure is a st
2 min read
Binary Search Algorithm - Iterative and Recursive Implementation
Binary Search Algorithm is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(log N). Binary Search AlgorithmConditions to apply Binary Searc
15 min read
Insertion Sort Algorithm
Insertion sort is a simple sorting algorithm that works by iteratively inserting each element of an unsorted list into its correct position in a sorted portion of the list. It is like sorting playing cards in your hands. You split the cards into two groups: the sorted cards and the unsorted cards. T
9 min read
Dijkstra's Algorithm to find Shortest Paths from a Source to all
Given a weighted undirected graph represented as an edge list and a source vertex src, find the shortest path distances from the source vertex to all other vertices in the graph. The graph contains V vertices, numbered from 0 to V - 1.Note: The given graph does not contain any negative edge. Example
12 min read
Selection Sort
Selection Sort is a comparison-based sorting algorithm. It sorts an array by repeatedly selecting the smallest (or largest) element from the unsorted portion and swapping it with the first unsorted element. This process continues until the entire array is sorted.First we find the smallest element an
8 min read