Bucket Sort Visualization & Animation

Distribute elements into buckets and sort

## Bucket Sort Bucket Sort distributes elements into several buckets, sorts each bucket individually, and then concatenates the results. ### How it works: 1. Create empty buckets 2. Distribute elements into buckets based on value 3. Sort individual buckets (using any sorting algorithm) 4. Concatenate all buckets ### Characteristics: - Very efficient for uniformly distributed data - Average case O(n) when data is uniformly distributed - Requires extra space for buckets

Category: algorithms

Difficulty: advanced

Time Complexity: O(n + k) average, O(n²) worst

Space Complexity: O(n)

Coming Soon

Bucket Sort

The interactive animation for this algorithm is under development. Check back soon!