InterviewSolution
Saved Bookmarks
| 1. |
How many methods of sorting |
|
Answer» TwoThere are two broad TYPES of sortingalgorithms: integer sorts and COMPARISON sorts. Comparison sorts compare elements at each STEP of the algorithm to determine if one ELEMENT should be to the left or right of another element. |
|