2022-10-30 09:08:54 +00:00
|
|
|
# Sorting Algorithms
|
|
|
|
Sorting is the process of putting data in a specific order. The way to arrange data in a specific order
|
|
|
|
is specified by the sorting algorithm. The most typical orders are lexical or numerical. The significance
|
|
|
|
of sorting lies in the fact that, if data is stored in a sorted manner, data searching can be highly optimised.
|
|
|
|
Another use for sorting is to represent data in a more readable manner.
|
|
|
|
|
2023-09-23 08:53:09 +00:00
|
|
|
This section contains a lot of important algorithms that help us to use sorting algorithms in various scenarios.
|
2022-10-30 09:08:54 +00:00
|
|
|
## References
|
|
|
|
* <https://www.tutorialspoint.com/python_data_structure/python_sorting_algorithms.htm>
|
|
|
|
* <https://www.geeksforgeeks.org/sorting-algorithms-in-python>
|
|
|
|
* <https://realpython.com/sorting-algorithms-python>
|