Stable Sorting fits because it supports multi-key sorting and equal-key records remain in their original relative order.
Both clues point to this choice.
Correct Answer: C. equal-key records remain in their original relative order
Explanation:
The defining property is that equal-key records remain in their original relative order.
The other statements describe different structures or concepts.
Bucket Sort fits because it supports uniformly distributed numeric data and performance depends on how evenly items spread across buckets.
Both clues point to this choice.
Correct Answer: C. performance depends on how evenly items spread across buckets
Explanation:
The defining property is that performance depends on how evenly items spread across buckets.
The other statements describe different structures or concepts.
Bucket Sort is a distribution sort that places values into buckets before sorting within them.
This description distinguishes it from the other choices.
Radix Sort fits because it supports sorting fixed-length integers or strings and each digit pass must use a stable subroutine in common LSD implementations.
Both clues point to this choice.
Correct Answer: C. each digit pass must use a stable subroutine in common LSD implementations
Explanation:
The defining property is that each digit pass must use a stable subroutine in common LSD implementations.
The other statements describe different structures or concepts.