Sorting
In this tutorial, we'll learn about sorting and sort algorithms.
What is Sorting?
Sorting is simply sorting the elements in a list (array), usually from the smaller values to the higher values.
Why use Sorting?
In many Algorithms, you require a sorted array of numbers. Sorting makes these Algorithms more efficient because they can be built to run on sorted arrays.
Different Sort Algorithms
Here are the Sort Algorithms we'll go over in this tutorial series. However, do note that there TONS! of other Sort Algorithms, but these are the most popular ones:
- Bubble Sort