Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
36.8K+ articles
DSA
21.3K+ articles
Python
21.3K+ articles
Python Programs
3.8K+ articles
Sorting
1.7K+ articles
Python-tkinter
358+ articles
Python-DSA
233+ articles
Python Tkinter-exercises
102+ articles
Insertion Sort
39+ articles
BubbleSort
23+ articles
python sorting-exercises
27 posts
Recent Articles
Popular Articles
Bisect Algorithm Functions in Python
Last Updated: 02 June 2025
The bisect module in Python helps you efficiently maintain a sorted list by finding the correct position to insert an element, keeping the list sorted without needing to s...
read more
Python
python sorting-exercises
Visualizing Quick Sort using Tkinter in Python
Last Updated: 30 November 2021
Prerequisite: QuickSortTkinter is a very easy-to-use and beginner-friendly GUI library that can be used to visualize the sorting algorithms. Here Quick Sort Algorithm is v...
read more
Python
Python-tkinter
Python Tkinter-exercises
python sorting-exercises
Python Program for Bitonic Sort
Last Updated: 03 August 2022
Bitonic Sequence: A sequence is called Bitonic if it is first increasing, then decreasing. In other words, an array arr[0..n-i] is Bitonic if there exists an index i where...
read more
Python
python sorting-exercises
Python Program for BogoSort or Permutation Sort
Last Updated: 28 August 2023
BogoSort also known as permutation sort, stupid sort, slow sort, shotgun sort or monkey sort is a particularly ineffective algorithm based on generate and test paradigm. T...
read more
Python
python sorting-exercises
Python Program for Recursive Insertion Sort
Last Updated: 28 August 2023
Insertion sort is a simple sorting algorithm that works the way we sort playing cards in our hands.Python Program for Recursive Insertion Sort for Iterative algorithm for ...
read more
Sorting
Python Programs
DSA
Insertion Sort
python sorting-exercises
Python Program for Gnome Sort
Last Updated: 28 August 2023
In this article we are going to see Gnome Sort with Python.Algorithm Steps:If you are at the start of the array then go to the right element (from arr[0] to arr[1]).If the...
read more
Python
python sorting-exercises
Python Program for Stooge Sort
Last Updated: 28 August 2023
The Stooge sort is a recursive sorting algorithm. It is defined as below (for ascending order sorting).Python Program for Stooge SortThe provided Python code implements th...
read more
Sorting
Python Programs
DSA
python sorting-exercises
Python Program for Odd-Even Sort / Brick Sort
Last Updated: 28 August 2023
This is basically a variation of bubble-sort. This algorithm is divided into two phases- Odd and Even Phase. The algorithm runs until the array elements are sorted and in ...
read more
Python
python sorting-exercises
Comb Sort - Python
Last Updated: 26 February 2025
Comb Sort is an improvement over Bubble Sort, and it aims to eliminate the problem of small values near the end of the list, which causes Bubble Sort to take more time tha...
read more
Python
python sorting-exercises
Cycle Sort - Python
Last Updated: 24 February 2025
Cycle sort is an in-place, unstable sorting algorithm that is particularly useful when sorting arrays containing elements with a small range of values.It is optimal in ter...
read more
Sorting
Python Programs
DSA
python sorting-exercises
Pigeonhole Sort - Python
Last Updated: 03 March 2025
Pigeonhole Sort is a sorting algorithm that is suitable for sorting lists of elements where the number of elements and the number of possible key values are approximately...
read more
Python
python sorting-exercises
Python Program for Cocktail Sort
Last Updated: 28 August 2023
Cocktail Sort is a variation of Bubble sort. The Bubble sort algorithm always traverses elements from left and moves the largest element to its correct position in first i...
read more
Python
python sorting-exercises
Sorting List of Lists with First Element of Each Sub-List in Python
Last Updated: 06 February 2024
In Python, sorting a list of lists by the first element of each sub-list is a common task. Whether you're dealing with data points, coordinates, or any other structured in...
read more
Python
Python Programs
Picked
python-list-functions
Python-list-of-lists
python sorting-exercises
Sort Tuple of Lists in Python
Last Updated: 01 February 2025
The task of sorting a tuple of lists involves iterating through each list inside the tuple and sorting its elements. Since tuples are immutable, we cannot modify them dire...
read more
Python
Python Programs
Picked
python-tuple
Python list-programs
python sorting-exercises
Sort List of Lists Ascending and then Descending in Python
Last Updated: 15 January 2025
Sorting a list of lists in Python can be done in many ways, we will explore the methods to achieve the same in this article.Using sorted() with a keysorted() function is a...
read more
Python
Python Programs
Picked
python-list
python sorting-exercises
1
2
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !