Skip to content

Commit 49248a0

Browse files
committed
add new algorithms on the tree
1 parent a8ebdc7 commit 49248a0

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

docs/readme.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,16 @@ print(binary_search(arr, 3))
5555

5656
# Tree
5757

58-
- Searches
58+
- ### Searches
5959
- [Binary Search](searches/binary-search)
60-
- Sorting
61-
- [Merge Sort](sorting/merge-sort)
60+
- ### Sorting
61+
- [Bubble Sort](sorting/bubble-sort)
62+
- [Cocktail Shaker Sort](sorting/cocktail-shaker-sort)
63+
- [Insertion Sort](sorting/insertion-sort)
64+
- [Merge Sort](sorting/merge-sort)
65+
- [Pidgeonhole Sort](sorting/pidgeonhole-sort)
66+
- [Selection Sort](sorting/selection-sort)
67+
- [Stooge Sort](sorting/stooge-sort)
6268

6369

6470
# Related

readme.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,16 @@ print(binary_search(arr, 3))
5555

5656
# Tree
5757

58-
- Searches
58+
- ### Searches
5959
- [Binary Search](https://python.allalgorithms.com/searches/binary-search)
60-
- Sorting
61-
- [Merge Sort](https://python.allalgorithms.com/sorting/merge-sort)
62-
60+
- ### Sorting
61+
- [Bubble Sort](https://python.allalgorithms.com/sorting/bubble-sort)
62+
- [Cocktail Shaker Sort](https://python.allalgorithms.com/sorting/cocktail-shaker-sort)
63+
- [Insertion Sort](https://python.allalgorithms.com/sorting/insertion-sort)
64+
- [Merge Sort](https://python.allalgorithms.com/sorting/merge-sort)
65+
- [Pidgeonhole Sort](https://python.allalgorithms.com/sorting/pidgeonhole-sort)
66+
- [Selection Sort](https://python.allalgorithms.com/sorting/selection-sort)
67+
- [Stooge Sort](https://python.allalgorithms.com/sorting/stooge-sort)
6368

6469
# Related
6570

0 commit comments

Comments
 (0)