Skip to content

Commit 7d363f9

Browse files
committed
added bucket sort
1 parent ec44c05 commit 7d363f9

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Algorithms/Sorting/readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ memory hierarchy (caches and virtual memory) of the host computer, and the
3030
software environment. Many of these issues are best dealt with at the algorithmic level, rather than by “tweaking” the code.
3131

3232
### Popular Sorting Algorithms
33+
3334
- [Bubble Sort](BubbleSort/readme.md)
35+
- [Bucket Sort](BucketSort/readme.md)
3436
- [Insertion Sort](InsertionSort/readme.md)
3537
- [Selection Sort](SelectionSort/readme.md)
3638
- [Merge Sort](MergeSort/readme.md)

Algorithms/readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ When creating algorithms there are a few techniques that can be used to reduce t
1616
## [Sorting](Sorting/readme.md)
1717
Sorting is the process of arranging a list of items in a particular order. For example, if you had a list of names, you might want to sort them alphabetically. Or if you had a list of numbers, you might want to put them in order from smallest to largest. Sorting is a common task, and it’s one that we can do in many different ways.
1818
### Popular Sorting Algorithms
19+
1920
* [Bubble Sort](Sorting/BubbleSort/readme.md)
21+
* [Bucket Sort](Sorting/BucketSort/readme.md)
2022
* [Insertion Sort](Sorting/InsertionSort/readme.md)
2123
* [Selection Sort](Sorting/SelectionSort/readme.md)
2224
* [Merge Sort](Sorting/MergeSort/readme.md)

0 commit comments

Comments
 (0)