Skip to content

Files

Latest commit

7b9f82c · Dec 20, 2023

History

History
This branch is 224 commits behind TheAlgorithms/Python:master.

sorts

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 23, 2023
Sep 28, 2020
Oct 27, 2022
Oct 24, 2023
Oct 27, 2022
Feb 19, 2023
Oct 19, 2023
Aug 18, 2023
Mar 1, 2023
Oct 26, 2023
Feb 1, 2023
Aug 29, 2023
Aug 29, 2023
Oct 23, 2023
May 26, 2023
Aug 15, 2021
Mar 15, 2023
Aug 14, 2020
Mar 4, 2020
Aug 21, 2023
Oct 31, 2023
May 21, 2022
Dec 24, 2022
Oct 25, 2023
Mar 1, 2023
Oct 15, 2020
Oct 27, 2022
Feb 1, 2023
Oct 27, 2023
Oct 4, 2021
Mar 4, 2020
Oct 4, 2021
Sep 7, 2021
Jan 18, 2020
Dec 20, 2023
Feb 17, 2021
Oct 16, 2022
Oct 27, 2022
Oct 26, 2021
Mar 1, 2023
Oct 23, 2023
Oct 4, 2023
Feb 1, 2023
Sep 7, 2021
Oct 4, 2023
Nov 15, 2022
Mar 1, 2023
Oct 4, 2023
Oct 16, 2023
Jun 16, 2020
Sep 25, 2020

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 help us to use sorting algorithms in various scenarios.

References