Recurrence Relations · Application: Divide and Conquer
Lesson 8
Problem. Mark the correct statements.
5 points
If \(T(n) \le 5T(n/4)+O(n)\), then \(T(n)=O(n)\).
If \(T(n) \le 5T(n/4)+O(n)\), then \(T(n)=O(n^{2})\).
If \(T(n) \le 5T(n/4)+O(n^{2})\), then \(T(n)=O(n^{2})\).
If \(T(n) \le 7T(n/2)+O(n^{2})\), then \(T(n)=O(n^{2})\).
If \(T(n) \le 7T(n/2)+O(n^{2})\), then \(T(n)=O(n^{3})\).