Question: For the C + + function below, give the tightest asymptotic upper bound that you can determine for the function s runtime, in terms of

For the C++ function below, give the tightest asymptotic upper bound that you can determine for the functions runtime, in terms of the input parameter,
. Also compute the return value of the function. Assume
, and that
is a multiple of 16. In your answers, you may assume that
is base 2. Finally, our symbolic expression parser likes simplified logs, so, for example, rather than writing
, you should write
.
int fun(int n){
int r =0;
int q =8*n;
for (int i=0; i<=q; i = i+4)
for (int j=0; j

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!