mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
Updated info (#7866)
* Updated info Updated the readme section for sorts. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update sorts/README.md Co-authored-by: Caeden Perelli-Harris <caedenperelliharris@gmail.com> * Update README.md Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Caeden Perelli-Harris <caedenperelliharris@gmail.com> Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
parent
57ccabbaeb
commit
5ba5c54858
11
sorts/README.md
Normal file
11
sorts/README.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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.
|
||||
|
||||
This section contains a lot of important algorithms that helps us to use sorting algorithms in various scenarios.
|
||||
## 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>
|
Loading…
Reference in New Issue
Block a user