Answer:
Step-by-step explanation:
Suppose we use some other sorting technique as the subroutine for radix sort to sort the digit, it will be unstable. The final outcome will not be accurate and correct. This is due to the fact that Unstable sort does not retain the order for equal components, thus whatever sorting was done before for lower significant bits might be screwed up by the next significant bit at that level that possesses the same value.
Consider the following scenario:
[431, 135, 132]
⇒ [431,132,135] (The least significant bit is used in the first step of sorting.)
⇒ [132, 431, 135] (Because the sorting algorithm was not reliable, the second level of sorting screwed up the preceding sorting.)
As a result, we will never receive an accurate and coorect outcome in this scenario.