From 14c236d072b88891cea405991200672a15b85021 Mon Sep 17 00:00:00 2001 From: varun jain <98322627+varunnitian@users.noreply.github.com> Date: Fri, 7 Oct 2022 15:49:48 +0530 Subject: [PATCH] Update Bucket-sort.md --- docs/en/Sorting/Bucket-sort.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/en/Sorting/Bucket-sort.md b/docs/en/Sorting/Bucket-sort.md index 0a039953..6b328ced 100644 --- a/docs/en/Sorting/Bucket-sort.md +++ b/docs/en/Sorting/Bucket-sort.md @@ -28,6 +28,7 @@ n is the number of buckets BucketIndex = ( arr[i] - min ) / range 5.Now sort each bucket individually + 6.Gather the sorted elements from buckets to original array ## Example