0% found this document useful (0 votes)
156 views6 pages

Analysis of Loops - Complexity

This document discusses analyzing the time complexity of loops in algorithms. It explains that a loop with a constant number of iterations is O(1). A simple loop incrementing by a constant amount each time is O(n). Nested loops result in O(n^c) time complexity where c is the number of loops. Logarithmic time complexity O(Logn) occurs when a loop variable is divided or multiplied by a constant each iteration. Exponential time complexity like O(LogLogn) happens when the loop variable changes exponentially each iteration. The overall complexity is the sum of individual loop complexities.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
156 views6 pages

Analysis of Loops - Complexity

This document discusses analyzing the time complexity of loops in algorithms. It explains that a loop with a constant number of iterations is O(1). A simple loop incrementing by a constant amount each time is O(n). Nested loops result in O(n^c) time complexity where c is the number of loops. Logarithmic time complexity O(Logn) occurs when a loop variable is divided or multiplied by a constant each iteration. Exponential time complexity like O(LogLogn) happens when the loop variable changes exponentially each iteration. The overall complexity is the sum of individual loop complexities.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Analysis of Algorithms | Set 4 (Analysis of Loops) | GeeksforGeeks http://www.geeksforgeeks.org/analysis-of-algorithms-set-4-analysis-of-...

GeeksforGeeks
A computer science portal for geeks

GeeksQuiz
Login

Home
Algorithms
DS
GATE
Interview Corner
Q&A
C
C++
Java
Books
Contribute
Ask a Q
About

Array
Bit Magic
C/C++
Articles
GFacts
Linked List
MCQ
Misc
Output
String
Tree
Graph

Analysis of Algorithms | Set 4 (Analysis of Loops)


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

1) O(1): Time complexity of a function (or set of statements) is considered as O(1) if it doesn’t contain
loop, recursion and call to any other non-constant time function.
// set of non-recursive and non-loop statements

For example swap() function has O(1) time complexity.


A loop or recursion that runs a constant number of times is also considered as O(1). For example the
following loop is O(1).
// Here c is a constant
for (int i = 1; i <= c; i++) {
// some O(1) expressions
}

1 of 6 08/03/2014 00:09
Analysis of Algorithms | Set 4 (Analysis of Loops) | GeeksforGeeks http://www.geeksforgeeks.org/analysis-of-algorithms-set-4-analysis-of-...

2) O(n): Time Complexity of a loop is considered as O(n) if the loop variables is incremented /
decremented by a constant amount. For example following functions have O(n) time complexity.
// 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
}

3) O(nc): Time complexity of nested loops is equal to the number of times the innermost statement is
executed. For example the following sample loops have O(n2) time complexity

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 example Selection sort and Insertion Sort have O(n2) time complexity.

4) O(Logn) Time Complexity of a loop is considered as O(Logn) if the loop variables is divided /
multiplied by a constant amount.
for (int i = 1; i <=n; i *= c) {
// some O(1) expressions
}
for (int i = n; i > 0; i /= c) {
// some O(1) expressions
}

For example Binary Search(refer iterative implementation) has O(Logn) time complexity.

5) O(LogLogn) Time Complexity of a loop is considered as O(LogLogn) if the loop variables is reduced /
increased exponentially by a constant amount.
// 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 > 0; i = fun(i)) {
// some O(1) expressions
}

See this for more explanation.

How to combine time complexities of consecutive loops?


When there are consecutive loops, we calculate time complexity as sum of time complexities of individual

2 of 6 08/03/2014 00:09
Analysis of Algorithms | Set 4 (Analysis of Loops) | GeeksforGeeks http://www.geeksforgeeks.org/analysis-of-algorithms-set-4-analysis-of-...

loops.
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).

How to calculate time complexity when there are many if, else statements inside loops?
As discussed here, worst case time complexity is the most useful among best, average and worst.
Therefore we need to consider worst case. We evaluate the situation when values in if-else conditions
cause maximum number of statements to be executed.
For example consider the linear search function where we consider the case when 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 time complexity of recursive functions?


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.

Quiz on Analysis of Algorithms

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

Related Tpoics:
Analysis of Algorithms | Set 3 (Asymptotic Notations)
NP-Completeness | Set 1 (Introduction)
Static and Dynamic Libraries | Set 1
The Ubiquitous Binary Search | Set 1
Reservoir Sampling
Analysis of Algorithms | Set 2 (Worst, Average and Best Cases)
Analysis of Algorithms | Set 1 (Asymptotic Analysis)

3 of 6 08/03/2014 00:09
Analysis of Algorithms | Set 4 (Analysis of Loops) | GeeksforGeeks http://www.geeksforgeeks.org/analysis-of-algorithms-set-4-analysis-of-...

Scope rules in C

Like 12 Tweet 4 1

Writing code in comment? Please use ideone.com and share the link here.

Disqus seems to be taking longer than usual. Reload?

GeeksforGeeks
Like

47,157 people like GeeksforGeeks.

Facebook social plugin


Interview Experiences
Advanced Data Structures
Dynamic Programming
Greedy Algorithms
Backtracking
Pattern Searching
Divide & Conquer
Mathematical Algorithms
Recursion
Geometric Algorithms

Popular Posts
All permutations of a given string

4 of 6 08/03/2014 00:09
Analysis of Algorithms | Set 4 (Analysis of Loops) | GeeksforGeeks http://www.geeksforgeeks.org/analysis-of-algorithms-set-4-analysis-of-...

Memory Layout of C Programs


Understanding “extern” keyword in C
Median of two sorted arrays
Tree traversal without recursion and without stack!
Structure Member Alignment, Padding and Data Packing
Intersection point of two Linked Lists
Lowest Common Ancestor in a BST.
Check if a binary tree is BST or not
Sorted Linked List to Balanced BST

657
Subscribe

Recent Comments
RajKumar Rampalli

Can we implement it using below simple logic....

Rearrange a string so that all same characters become at least d distance away · 48 minutes
ago

uuuouou

5 of 6 08/03/2014 00:09
Analysis of Algorithms | Set 4 (Analysis of Loops) | GeeksforGeeks http://www.geeksforgeeks.org/analysis-of-algorithms-set-4-analysis-of-...

I'm sorry, but your algorithm will fail when...

Rearrange a string so that all same characters become at least d distance away · 1 hour ago

veer

this problem can be solved in few loops. b[]...

Sort n numbers in range from 0 to n^2 – 1 in linear time · 2 hours ago

Vinay

1,1,2,3,4,5,6,2,2,2,5,3,3,2,2,1,5,5,5,5,4,4,4,1...

Searching for Patterns | Set 1 (Naive Pattern Searching) · 6 hours ago

neelabhsingh

GeeksforGeeks. if((node->data == left_data +...

Check for Children Sum Property in a Binary Tree. · 7 hours ago

Kunal Chopra

I am getting error :: ) expected at line 6.....

Greedy Algorithms | Set 5 (Prim’s Minimum Spanning Tree (MST)) · 9 hours ago

► Code Analysis ► Log Analysis ► Root Analysis


► Program Analysis ► N Analysis ► Complex Analysis
► Stack Analysis ► Break Loops ► Keyword Analysis
@geeksforgeeks, Some rights reserved Contact Us!
Powered by WordPress & MooTools, customized by geeksforgeeks team

6 of 6 08/03/2014 00:09

You might also like