Noun
bucket sort (plural bucket sorts)
English Wikipedia has an article on:bucket sortWikipedia
(computing theory) A sorting algorithm that partitions an array into a number of buckets (groups of elements) which are then individually sorted, either recursively or using some other algorithm.
Bucket sort main Bucket sort is a divide and conquer sorting algorithm that generalizes counting sort by partitioning an array into a finite number of buckets. Source: Internet