/sorting

Primary LanguagePython

Sorting Algorithms Visualisation

sort

Requirements

  • pygame
  • argparse
  • numpy

Run

python main.py -n [NUM_ELEMENTS] -a [ALGORITHM]

Currently implemented

  • Selection Sort : selection_sort
  • Bubble Sort : bubble_sort
  • Insertion Sort : insertion_sort
  • Merge Sort : merge_sort
  • Quick Sort : quick_sort
  • Heap Sort : heap_sort
  • Counting Sort : counting_sort
  • Radix Sort : radix_sort