Why Recursion tree method is best than the Substitution method for solving a recurrence relation? Find the asymptotic upper bound of the following recurrence relation with the help of recursion tree method.
T(n)=T(n/4)+T(n/2)+Θ(n2)
Recursion tree method is best than the Substitution method for solving a recurrence relation because in recursion tree method, we draw a recurrence tree and calculate the time taken by every level of tree. Finally, we sum the work done at all levels. To draw the recurrence tree, we start from the given recurrence and keep drawing till we find a pattern among levels. The pattern is typically a arithmetic or geometric series but in substitution method we make a guess for the solution and then we use mathematical induction to prove the guess is correct or incorrect.
Write short notes on
Write the string matching algorithm due to Knuth,Moris and Pratt. Analyze its time complexity.
Explain two-phase locking protocol.
What is a minimum spanning tree ? Describe Huffman’s Algorithm.
What do you mean by software crisis & its solution.
Explain the concept of frequency reuse in cellular systems.
Write short notes on: