What are ways in which sorting can be perfomed?
Answers
Answered by
2
Answer:
Common sorting algorithms
Bubble/Shell sort : Exchange two adjacent elements if they are out of order. ...
Insertion sort : Scan successive elements for an out-of-order item, then insert the item in the proper place.
Selection sort : Find the smallest (or biggest) element in the array, and put it in the proper place.
Similar questions