Question: Calculate the time complexity of the given code: for ( i = 1; i
Calculate the time complexity of the given code:
for ( i = 1; i <= n; i++ )
{
for ( j = 1; j <= i ; j++ )
{
for ( k = 1; k <= n; k++ )
{
a = b + c;
}
}
}
Step by Step Solution
3.41 Rating (145 Votes )
There are 3 Steps involved in it
Lets time complexity of whole code is Tn lets analyse all the l... View full answer
Get step-by-step solutions from verified subject matter experts
