Skip to content

GabrielAlonsoCabral/sorting-algorithms-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sorting-algorithms

Benchmark of sorting algorithms in python

$ python3 benchmark.py

# Logs

Execution time of bubble_sort: 23.434 seconds
Execution time of insertion_sort: 9.379 seconds
Execution time of selection_sort: 9.966 seconds
Execution time of merge_sort: 0.037 seconds
Execution time of quick_sort: 0.044 seconds