Major sorting algorithms? [closed]

-3

What are the major sorting algorithms?

If possible with examples in the C language.

I do not know when to use one or the other.

    
asked by anonymous 14.03.2016 / 22:28

1 answer

2

The question is a little broad and putting their code would be too much, even because it would just be an implementation.

The QuickSort is triggered the most used because it caters well almost every situation. Others may be better in certain situations.

The Wikipedia has a great comparison of them.

A visual way to understand how they work. Other .

    
14.03.2016 / 22:37