CSC314 Design and Analysis of Algorithms

Design and Analysis of AlgorithmsTU Board 2076

Solve the following recurrence relation using the master method. 1. T(n) = 7 T(n/2) + n^2 1. T(n) = 4 T(n/4) + kn

5

Solve the following recurrence relation using the master method.

  1. T(n) = 7 T(n/2) + n^2
  2. T(n) = 4 T(n/4) + kn
A worked answer is on its wayMeanwhile, read the Design and Analysis of Algorithms notes for this topic.

Discussion

Loading…

More Design and Analysis of Algorithms questions

All Design and Analysis of Algorithms old questions