Skip to content

Commit 55080eb

Browse files
committed
Add a reference link for BucketSort
1 parent 199d263 commit 55080eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sorts/BucketSort.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Wikipedia says: Bucket sort, or bin sort, is a sorting algorithm that works by distributing the
2+
[Wikipedia says](https://en.wikipedia.org/wiki/Bucket_sort#:~:text=Bucket%20sort%2C%20or%20bin%20sort,applying%20the%20bucket%20sorting%20algorithm.&text=Sort%20each%20non%2Dempty%20bucket.): Bucket sort, or bin sort, is a sorting algorithm that works by distributing the
33
elements of an array into a number of buckets. Each bucket is then sorted individually, either using
44
a different sorting algorithm, or by recursively applying the bucket sorting algorithm. It is a
55
distribution sort, and is a cousin of radix sort in the most to least significant digit flavour.

0 commit comments

Comments
 (0)