2. Use the master theorem to find the following in O-notation: 1. T(n) = 4T(n/2) + n 2. T(n) = 4T(n/2) + n√n 3. T(n) = 4T(n/2) + n² 4. T(n) = 5T(n/2) + n 5. T(n) = 5T(n/2) + n√√n 6. T(n) 5T(n/2) + n² =

icon
Related questions
Question
2. Use the master theorem to find the following in O-notation:
1. T(n) = 4T(n/2) + n
2. T(n) = 4T(n/2) + n√n
3. T(n) = 4T(n/2) + n²
4. T(n) = 5T(n/2) + n
5. T(n) = 5T(n/2) + n√n
6. T(n) = 5T(n/2) + n²
7. T(n) = 10T(n/3) + O(n√n) + 13
Transcribed Image Text:2. Use the master theorem to find the following in O-notation: 1. T(n) = 4T(n/2) + n 2. T(n) = 4T(n/2) + n√n 3. T(n) = 4T(n/2) + n² 4. T(n) = 5T(n/2) + n 5. T(n) = 5T(n/2) + n√n 6. T(n) = 5T(n/2) + n² 7. T(n) = 10T(n/3) + O(n√n) + 13
Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer