Skip to content

Commit ed2987b

Browse files
author
Christian Bender
authored
Merge pull request AllAlgorithms#213 from christianbender/update_README
updated the readme.md
2 parents ae94c06 + fece23d commit ed2987b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

readme.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
- [Queue](data-structures/queue/queue.cpp)
6060
- Stack
6161
- [Stack](data-structures/stack/stack.cpp)
62+
- Linked List
63+
- [linked list](data-structures/linkedlist)
6264

6365
## Dynamic Programming
6466

@@ -68,6 +70,8 @@
6870
- [Longest common subsequence](dynamic-programming/lcs.cpp)
6971
- [Longest Path](dynamic-programming/longest_path.cpp)
7072
- [Ways to Cover](dynamic-programming/ways_to_cover.cpp)
73+
- [Fibonacci Numbers](dynamic-programming/fibonacci_number.cpp)
74+
- [Rod Cutting](dynamic-programming/rod_cutting.cpp)
7175

7276
## Graphs
7377

@@ -78,6 +82,7 @@
7882
- [Dijkstra](graphs/dijkstra.cpp)
7983
- [Floyed Warshall](graphs/floyd_warshall.cpp)
8084
- [Prims Adjacency List](graphs/prims_adjacency_list.cpp)
85+
- [Topo-Sort](graphs/toposort.cpp)
8186

8287
## Math
8388

@@ -89,13 +94,21 @@
8994
- [Lucky Numbers](math/lucky_numbers.cpp)
9095
- [Modular Exponentiations](math/modular_exponentiations.cpp)
9196
- [nth Fibonacci Number using Goldenratio](math/nth_fibonacci_using_goldenratio.cpp)
97+
- [Armstrong Numbers](math/armstrong_number.cpp)
98+
- [Termo Conversion](math/TermoConv.cpp)
99+
- [Pascal Triangle](math/Pascals_triangle.cpp)
100+
- [Modular Exponentiation](math/modular_exponentiation.cpp)
101+
- [Maximum Subarray Problem ](math/kadence.cpp)
102+
- [Eulers Totient (Phi-function)](math/eulers_totient.cpp)
103+
- [Slicker Algorithm](math/Slicker_Algorithm.cpp)
92104

93105
## Searches
94106

95107
- [Binary Search](searches/binary_search.cpp)
96108
- [Jump Search](searches/jump_search.cpp)
97109
- [Linear Search](searches/linear_search.cpp)
98110
- [Ternary Search](searches/ternary_search.cpp)
111+
- [Exponential Search](searches/exponential_search.cpp)
99112

100113
## Sorting
101114

@@ -108,6 +121,13 @@
108121
- [Selection Sort](sorting/selection_sort.cpp)
109122
- [Sort Vector](sorting/sort_vector.cpp)
110123
- [Tree Sort](sorting/tree_sort.cpp)
124+
- [Counting Sort](sorting/counting_sort.cpp)
125+
- [Bogo-Sort](sorting/bogo_sort.cpp)
126+
- [Radix-Sort](sorting/radix_sort.cpp)
127+
- [Rank Sort](sorting/rank_sort.cpp)
128+
- [Shell Sort](sorting/shell_sort.cpp)
129+
- [Stooge Sort](sorting/stooge_sort.cpp)
130+
- [Shaker Sort](sorting/shaker_sort.cpp)
111131

112132
## Strings
113133

@@ -121,6 +141,7 @@
121141
- [Remove Adjacent Duplicates](strings/remove_adjacent_duplicates.cpp)
122142
- [Remove Duplicates](strings/remove_duplicates.cpp)
123143
- [Reverse String](strings/reverse_string.cpp)
144+
- [Naive Search](strings/naive_search.cpp)
124145

125146
## License
126147

0 commit comments

Comments
 (0)