Snippets icon indicating copy to clipboard operation
Snippets copied to clipboard

All Sorting Techniques in Python

Open Invincible1602 opened this issue 1 year ago • 0 comments

Hey @Kavya-24 ,

The implementation of various sorting algorithms in Python. The goal is to create a module that includes multiple well-known sorting techniques, each designed to work with lists of integers, floats, or other comparable elements. The sorting algorithms to be implemented should cover a wide range of time and space complexities to provide a comprehensive set of options for different use cases.

Requirements:

Implement the following sorting algorithms:

  • Bubble Sort
  • Selection Sort
  • Insertion Sort
  • Merge Sort
  • Quick Sort
  • Heap Sort
  • Radix Sort

Invincible1602 avatar Oct 03 '24 13:10 Invincible1602