Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/azanul/sorting-visualized

Graphical representation of all the sorting algorithms.
https://github.com/azanul/sorting-visualized

sorting sorting-algorithms

Last synced: about 8 hours ago
JSON representation

Graphical representation of all the sorting algorithms.

Awesome Lists containing this project

README

        

# Sorting-Visualized
Graphical representation of all the following sorting algorithms-

|Sn.| Name | Worst Case complexity | Best-case complexity | Average-case complexity|
----|---------------|-----------------------------|---------------------------|---------------------------|
|1. | Insertion | O(n^2) | Ω(n) | θ(n^2) |
|2. | Selection | O(n^2) | Ω(n^2) | θ(n^2) |
|3. | Heap | O(n log(n)) | Ω(n log(n)) | θ(n log(n)) |
|4. | Quick | O(n^2) | Ω(n log(n)) | θ(n log(n)) |
|5. | Merge | O(n log(n)) | Ω(n log(n)) | θ(n log(n)) |
|6. | Radix | O(nk) | Ω(nk) | θ(nk) |
|7. | Bubble | O(n^2) | Ω(n) | θ(n^2) |
|8. | Cocktail | O(n^2) | Ω(n) | θ(n^2) |