Question: Find a big-O estimate for the running time (in terms of n) of the following function (with explanation): (a) int mysterySum( int n ) {
Find a big-O estimate for the running time (in terms of n) of the following function (with explanation):
(a)
int mysterySum( int n ) {
int i, j, s=0;
for(i=0; i < n; i++) {
for(j=0; j < i; j++) {
s += i*i; }
}
}
(b) Replace the inner loop in mysterySum by an O(1) expression and compute the running time of the new program
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
