Skip to content

aritra-sen/sorting-simulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

Sorting Simulator

Creating one of the most common college projects, THE SORTING SIMULATOR.

How to Run

chmod +x run.sh
./run.sh

What are we gonna do?

  • Genarate a randomly-arranged uniform distribution of numbers from 1 to 1000 (10^3).
  • Draw them on a UI using a histogram.
  • Redraw the histogram for every step of the sort.

Scope

These sorting algorithms are in scope for this --

  • Selection Sort ⇒ O(N^2)
  • Insertion sort ⇒ O(N^2)
  • Bubble Sort ⇒ O(N^2)
  • Merge Sort ⇒ O(N Log N)
  • Quick Sort ⇒ O(N Log N)
  • Heap Sort ⇒ O(N Log N)

About

A ReactJS-based sorting simulator Single Page website

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors