Skip to content

Vite, Typescript, React project to see how various sorting algorithms work.

Notifications You must be signed in to change notification settings

shafiqihtsham/SortingVisualizer

Repository files navigation

Minecraft Themed Sorting Visualiser

Available Here

image

Current algorithms :

Algorithm Time Complexity Space Complexity
Best Average Worst Worst
Quicksort Ω(n log(n)) Θ(n log(n)) O(n^2) O(log(n))
Mergesort Ω(n log(n)) Θ(n log(n)) O(n log(n)) O(n)
Heapsort Ω(n log(n)) Θ(n log(n)) O(n log(n)) O(1)
Bubble Sort Ω(n) Θ(n^2) O(n^2) O(1)
Insertion Sort Ω(n) Θ(n^2) O(n^2) O(1)

Todo :

  • Radix Sort

Not to do:

  • Add sound (yuck)

About

Vite, Typescript, React project to see how various sorting algorithms work.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published