Which recurrence is characteristic of an algorithm that divides a problem into two equal subproblems and performs linear work to combine their results?
Options
- A. T(N) = 2T(N/2) + O(N)
- B. T(N) = T(N - 1) + O(1)
- C. T(N) = T(N/2) + O(1)
- D. More than one of the above
- E. None of the above