What is the big-o performance estimate of the following


What is the big-O performance estimate of the following function?


int f (n) {
int sum = 0;
for (i = n; i > 0; i = i / 5)
sum += i;
return sum;
} // end f

 

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: What is the big-o performance estimate of the following
Reference No:- TGS01244423

Expected delivery within 24 Hours