Bucket sort

Bucket sort 



https://www.geeksforgeeks.org/bucket-sort-2/




Bucket sort, or bin sort, is a sorting algorithm that works by distributing the elements of an array into a number of buckets. Each bucket is then sorted individually, either using a different sorting algorithm, or by recursively applying the bucket sorting algorithm. It is a distribution sort,

 

posted on 2018-09-20 18:03  猪猪🐷  阅读(74)  评论(0)    收藏  举报

导航