...
/Example: Time Complexity of an Algorithm With Nested Loops
Example: Time Complexity of an Algorithm With Nested Loops
In this lesson, we will learn how to compute the time complexity of an algorithm that involves nested for loops.
We'll cover the following...
A Program With Nested for
Loops
Consider the following javascript program:
//n can be anythingvar n = 5var m = 7var sum = 0for(var i = 0; i < n; i++)for(var j = 0; j < m; j++)sum += 1console.log(sum)
It is a simple piece of code that prints the number of times the increment statement runs throughout the program. Let’s compute its time complexity.
Time Complexity
Let’s take the training wheels off and jump straight to line number 5. From the previous lesson, you would recall that it accounts for primitive operations: one for initialization, for the comparison, and for the increment.
Let’s move onto line number 6. Since this line is nested inside the for loop on line 5, it is repeated times. For a single iteration of the outer for loop, how many primitive operations does this line incur? You should be able to generalize from the last lesson that the answer is ...