What is the Worst Time Complexity of Bucket Sort?
The worst time complexity of bucket sort is O(N^2). This is because, as the name suggests, in this algorithm, the buckets are created, and the elements which are in the buckets are sorted separately and independently and then combined to form the solution, so the time complexity increases. The complete details and the internal working of ...