Skip to content

anmolgupta2015/Sorting-Visualizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sorting-Visualizer

Sorting Visualizer written in C++ using the SDL2 library. The program generates random array of numbers and also prints the time taken to sort the array.

Algorithms included:

  1. Bubble Sort θ(n^2)
  2. Insertion Sort θ(n^2)
  3. Selection Sort θ(n^2)
  4. Quick Sort θ(n log(n))
  5. Merge Sort θ(n log(n))
  6. Heap Sort θ(n log(n))

Demo:

1.Heap Sort

heapsort

2.Merge Sort mergesort

3.Bubble Sort bubblesort

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published