what's the your favorite sorting algorithm and explain why?
Anonimo
This is an invitation for you to discuss your understanding of one or more sorting algorithms, both the pros and cons. One might pick quick sort, and say it's the fastest algorithm out there, and that it lends itself well to a multiple thread/processor scenario, since once the pivoting phase is completed, the numbers on each side of the pivot can be further sorted independently, which means that portion can be handled by its own thread/processor.