Saved Bookmarks
| 1. |
When to use non-comparison based sorting algorithms over comparison-based algorithms? |
|
Answer» Most of the common sorting algorithms fall into the category of comparison-based sorting algorithms like quicksort, MERGESORT, ETC and those are the more likely you will USE in the real world, but specialized non-comparison algorithms e.g. counting sort and bucket sort can be very useful if the set of input MEETS the |
|