DeepNinja07x / Python_Scripts

It contains all the Python Programs, whether it's a GUI, basic, Data Structures, etc. It's a collection of some great Python scripts from basic to advance levels for automating some monotonous tasks.
The Unlicense
32 stars 56 forks source link

created Bucket Sort.py #116

Closed piyushgoswami015 closed 3 years ago

piyushgoswami015 commented 3 years ago

Bucket Sort is a sorting algorithm that divides the unsorted array elements into several groups called buckets. Each bucket is then sorted by using any of the suitable sorting algorithms or recursively applying the same bucket algorithm.