Question: 1.What is the big-O behavior of this code segment? Explain briefly. k = n; while ( k > 0 ) { for ( j =
1.What is the big-O behavior of this code segment? Explain briefly.
k = n;
while ( k > 0 )
{
for ( j = 1; j < n; ++j )
{
. . .
}
k = k / 3;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
