Step 1: Naive approach.
Finding minimum and maximum separately requires \(2n - 2\) comparisons, which is not optimal.
Step 2: Optimal comparison strategy.
Using the tournament method, elements are compared in pairs. Each comparison reduces the problem size efficiently.
Step 3: Counting comparisons.
The optimal number of comparisons required is at most \(3\left\lceil \frac{n}{2} \right\rceil - 2\), which is greater than \(n\) and less than or equal to \(3\left\lceil \frac{n}{2} \right\rceil\).
Step 4: Conclusion.
Thus, the correct bound on \(t\) is \(t > n\) and \(t \leq 3\left\lceil \frac{n}{2} \right\rceil\).
Final Answer: (C)
Consider the following recurrence relation.
\[ T(n) = \begin{cases} T(n/2) + T(2n/5) + 7n, & \text{if } n > 0 \\ 1, & \text{if } n = 0 \end{cases} \] Which one of the following options is correct?