DAA Assignment 1
DAA Assignment 1
Q. No. Question CO
What are the steps needed to be followed while designing an algorithm?
1. C303.1
Compare time complexity with space complexity.
2. C303.1
What are the characteristics of the algorithm ?
3. C303.1
Why are asymptotic notations important ?
4. C303.1
Solve the given recurrence T(n) = 4T (n/4) + n.
5. C303.1
Justify why quick sort is better than merge sort?
6. C303.1
Write the names of various design techniques of algorithm.
7. C303.1
Solve the following recurrence using master method:
8. T(n) = 4T (n/3) + n2
C303.1
Find the time complexity of the recurrence relation
9. T(n) = n + T(n/10) + T(7n/5)
C303.1
Rank the following by growth rate :
10. C303.1