Skip to content

williamhpark/AlgoRacer

Repository files navigation

🏁 AlgoRacer

Description

A sorting algorithm visualizer created using React that races a variety of sorting algorithms against one another to compare their efficiency. Try it out at https://algoracer.onrender.com/.

This is a project that I created over a weekend to help showcase my knowledge of sorting algorithms and frontend web development.

image

Algorithms

Merge Sort

Best-case: Ω(nlog(n))
Average-case: θ(nlog(n))
Worst-case: O(nlog(n))

Bubble Sort

Best-case: Ω(n)
Average-case: θ(n^2)
Worst-case: O(n^2)

Selection Sort

Best-case: Ω(n^2)
Average-case: θ(n^2)
Worst-case: O(n^2)

Insertion Sort

Best-case: Ω(n)
Average-case: θ(n^2)
Worst-case: O(n^2)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published