Skip to content

Commit

Permalink
added bucket sort
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterMarch committed Mar 1, 2024
1 parent ec44c05 commit 7d363f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Algorithms/Sorting/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ memory hierarchy (caches and virtual memory) of the host computer, and the
software environment. Many of these issues are best dealt with at the algorithmic level, rather than by “tweaking” the code.

### Popular Sorting Algorithms

- [Bubble Sort](BubbleSort/readme.md)
- [Bucket Sort](BucketSort/readme.md)
- [Insertion Sort](InsertionSort/readme.md)
- [Selection Sort](SelectionSort/readme.md)
- [Merge Sort](MergeSort/readme.md)
Expand Down
2 changes: 2 additions & 0 deletions Algorithms/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ When creating algorithms there are a few techniques that can be used to reduce t
## [Sorting](Sorting/readme.md)
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.
### Popular Sorting Algorithms

* [Bubble Sort](Sorting/BubbleSort/readme.md)
* [Bucket Sort](Sorting/BucketSort/readme.md)
* [Insertion Sort](Sorting/InsertionSort/readme.md)
* [Selection Sort](Sorting/SelectionSort/readme.md)
* [Merge Sort](Sorting/MergeSort/readme.md)
Expand Down

0 comments on commit 7d363f9

Please sign in to comment.