Skip to content

Rammurthy5/sorting_algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quick sort

Counting Sort

Bubble sort

merge sort

Time Complexity comparison of Sorting Algorithms

Quicksort --- O(n log(n)) O(n log(n)) O(n^2)

Bubblesort --- O(n) O(n^2) O(n^2)

Countingsort --- O(n+k) O(n+k) O(n+k)

mergesort -- O ( n log n)

About

Practice sorting algorithms widely used

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages