Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What is the time complexity of the following C language function, which assumes that matrix [ ] [ ] is an nxn matrix. int addMatrix

What is the time complexity of the following C language function, which assumes that matrix[][] is an nxn matrix.
int addMatrix(int ** matrix, int n)
{
int sum =0;
int k;
for (k =2; k < n; k=k*k){
sum = sum + k;
}
for (int m =1; m*m < k; m=m+1){
for (int r =0; r < n; r = r+m){
sum += r;
}
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

3. Existing organizations and programs constrain behavior.

Answered: 1 week ago