Exercise 9.3.4
Suppose that an algorithm uses only comparisons to find the th smallest element in a set of elements. Show that it can also find the smaller elements and the larger elements without performing any additional comparisons.
A strict proof might require a more advanced proof apparatus than I command (like graphs and adversary algorithms, for example?), so I will just sketch it briefly.
In order to determine the th order statistic, any algorithm needs to establish in some way that there are elements smaller than the result and elements larger than the result. We can visualize the algorithm as a directed graph, where all the elements are edges. Each comparison introduces a node from the smaller to the larger element. To produce a result, there must be elements that (transitively) point to the th order statistic and elements that the th order statistic (transitively) points to. There cannot be more (property of the order statistics) and if there are less, then there are elements whose position in regard to the th order statistic is undetermined.
In order to find the result, the algorithm needs to build the knowledge presented in such a graph and it can use it to return the sets of smaller and larger elements.
As an example, both algorithms presented in the chapter leave the array partitioned around the th order statistic.