1. Given the following two functions:
ο· f(n) = 3n2 + 5
ο· g(n) = 53n + 9
Use limits to prove or disprove each of the following:
ο· f ο ο(g)
ο· g ο ο(f)
2. Rank the following functions from lowest asymptotic order to highest. List any two or more that are of the same order on the same line.
ο· 2π
ο· π3+5π
ο· log2π
ο· π3+2π2+1
ο· 3n
ο· log3π
ο· π2+5π+10
ο· π log2π
ο· 10π+ 7
ο· βπ
Consider the following functions for problems 3 and 4.
int max(int[] array, int first, int last)
{
if (first == last)
return array[first];
else if (first + 1 == last)
return max(array[first], array[last]);
else
{
int mid = (first + last) / 2;
return max(max(array, first, mid), max(array, mid + 1, last));
}
}
int max(int left, int right)
{
if (left > right)
return left;
return right;
}
3. Write the recurrence equation that expresses the execution time cost for the above algorithm. Draw the recursion tree assuming that n= 8.
4. Determine the critical exponent for the recurrence equation in problem 3. Apply the Little Master Theorem to solve that equation. Is this algorithm optimal? Explain.
[SOLVED] Homework 2
25.00 $
Assignment Instructions Updated Recently? Submit Below and we will provide new Solution!
Submit New Instructions
Securely Powered by:
- 10641230_upated.docx






