Skip to content

Commit 26a02ac

Browse files
authored
Update DIRECTORY.md
1 parent e82ed35 commit 26a02ac

File tree

1 file changed

+115
-0
lines changed

1 file changed

+115
-0
lines changed

DIRECTORY.md

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,118 @@
7878
## Dynamic Programming
7979
* [Bitmask](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/bitmask.py)
8080
* [Coin Change](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/coin_change.py)
81+
* [Edit Distance](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/edit_distance.py)
82+
* [Fast Fibonacci](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/fast_fibonacci.py)
83+
* [Fibonacci](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/fibonacci.py)
84+
* [Floyd Warshall](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/floyd_warshall.py)
85+
* [Integer Partition](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/integer_partition.py)
86+
* [K Means Clustering Tensorflow](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/k_means_clustering_tensorflow.py)
87+
* [Knapsack](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/knapsack.py)
88+
* [Longest Common Subsequence](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/longest_common_subsequence.py)
89+
* [Longest Increasing Subsequence](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/longest_increasing_subsequence.py)
90+
* [Longest Increasing Subsequence Nlogn](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/longest_increasing_subsequence_O(nlogn).py)
91+
* [Longest Sub Array](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/longest_sub_array.py)
92+
* [Matrix Chain Order](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/matrix_chain_order.py)
93+
* [Max Sub Array](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/max_sub_array.py)
94+
* [Minimum Partition](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/minimum_partition.py)
95+
* [Rod Cutting](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/rod_cutting.py)
96+
* [Subset Generation](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/subset_generation.py)
97+
## File Transfer Protocol
98+
* [FTP Client Server](https://github.com/TheAlgorithms/Python/blob/master/file_transfer_protocol/ftp_client_server.py)
99+
* [FTP Send Receive](https://github.com/TheAlgorithms/Python/blob/master/file_transfer_protocol/ftp_send_receive.py)
100+
## Graphs
101+
* [BFS](https://github.com/TheAlgorithms/Python/blob/master/graphs/BFS.py)
102+
* [DFS](https://github.com/TheAlgorithms/Python/blob/master/graphs/DFS.py)
103+
* [Directed and Undirected Weighted Graph](https://github.com/TheAlgorithms/Python/blob/master/graphs/Directed_and_Undirected_(Weighted)_Graph.py)
104+
* [Eulerian Path and Circuit for Undirected Graph](https://github.com/TheAlgorithms/Python/blob/master/graphs/Eulerian_path_and_circuit_for_undirected_graph.py)
105+
* [A Star](https://github.com/TheAlgorithms/Python/blob/master/graphs/a_star.py)
106+
* [Articulatioin Points](https://github.com/TheAlgorithms/Python/blob/master/graphs/articulation_points.py)
107+
* [Basic Graph](https://github.com/TheAlgorithms/Python/blob/master/graphs/basic_graphs.py)
108+
* [Bellman Ford](https://github.com/TheAlgorithms/Python/blob/master/graphs/bellman_ford.py)
109+
* [BFS Shortest Path](https://github.com/TheAlgorithms/Python/blob/master/graphs/bfs_shortest_path.py)
110+
* [Breadth First Search](https://github.com/TheAlgorithms/Python/blob/master/graphs/breadth_first_search.py)
111+
* [Check Bipartite Graph BFS](https://github.com/TheAlgorithms/Python/blob/master/graphs/check_bipartite_graph_bfs.py)
112+
* [Check Bipartite Graph DFS](https://github.com/TheAlgorithms/Python/blob/master/graphs/check_bipartite_graph_dfs.py)
113+
* [Depth First Search](https://github.com/TheAlgorithms/Python/blob/master/graphs/depth_first_search.py)
114+
* [Dijkstra](https://github.com/TheAlgorithms/Python/blob/master/graphs/dijkstra.py)
115+
* [Dijkstra 2](https://github.com/TheAlgorithms/Python/blob/master/graphs/dijkstra_2.py)
116+
* [Dijkstra Algorithm](https://github.com/TheAlgorithms/Python/blob/master/graphs/dijkstra_algorithm.py)
117+
* [Edmonds Karp Multiple Source and Sink](https://github.com/TheAlgorithms/Python/blob/master/graphs/edmonds_karp_multiple_source_and_sink.py)
118+
* [Even Tree](https://github.com/TheAlgorithms/Python/blob/master/graphs/even_tree.py)
119+
* [Finding Bridges](https://github.com/TheAlgorithms/Python/blob/master/graphs/finding_bridges.py)
120+
* [Floyd Warshall](https://github.com/TheAlgorithms/Python/blob/master/graphs/floyd_warshall.py)
121+
* [Graph List](https://github.com/TheAlgorithms/Python/blob/master/graphs/graph_list.py)
122+
* [Graph Matrix](https://github.com/TheAlgorithms/Python/blob/master/graphs/graph_matrix.py)
123+
* [Kahns Algorithm Long](https://github.com/TheAlgorithms/Python/blob/master/graphs/kahns_algorithm_long.py)
124+
* [Kahns Algorithm Topo](https://github.com/TheAlgorithms/Python/blob/master/graphs/kahns_algorithm_topo.py)
125+
* [Minimum Spanning Tree Kruskal](https://github.com/TheAlgorithms/Python/blob/master/graphs/minimum_spanning_tree_kruskal.py)
126+
* [Minimum Spanning Tree Prims](https://github.com/TheAlgorithms/Python/blob/master/graphs/minimum_spanning_tree_prims.py)
127+
* [Multi Hueristic Astar](https://github.com/TheAlgorithms/Python/blob/master/graphs/multi_hueristic_astar.py)
128+
* [Page Rank](https://github.com/TheAlgorithms/Python/blob/master/graphs/page_rank.py)
129+
* [Prim](https://github.com/TheAlgorithms/Python/blob/master/graphs/prim.py)
130+
* [Scc Kosaraju](https://github.com/TheAlgorithms/Python/blob/master/graphs/scc_kosaraju.py)
131+
* [Tarjans Scc](https://github.com/TheAlgorithms/Python/blob/master/graphs/tarjans_scc.py)
132+
## Hashes
133+
* [Chaos Machine](https://github.com/TheAlgorithms/Python/blob/master/hashes/chaos_machine.py)
134+
* [Md5](https://github.com/TheAlgorithms/Python/blob/master/hashes/md5.py)
135+
* [Sha1](https://github.com/TheAlgorithms/Python/blob/master/hashes/sha1.py)
136+
## Linear Algebra Python
137+
* [Source](https://github.com/TheAlgorithms/Python/tree/master/linear_algebra_python)
138+
## Machine Learning
139+
* Random Forest Classification
140+
* [Random Forest Classifier](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/Random%20Forest%20Classification/Random%20Forest%20Classifier.ipynb)
141+
* [Social Network ADS](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/Random%20Forest%20Classification/Social_Network_Ads.csv)
142+
* [Random Forest Classification](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/Random%20Forest%20Classification/random_forest_classification.py)
143+
* Random Forest Regression
144+
* [Position Salaries](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/Random%20Forest%20Regression/Position_Salaries.csv)
145+
* [Random Forest Regression](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/Random%20Forest%20Regression/Random%20Forest%20Regression.ipynb)
146+
* [Random Forest Regression 2](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/Random%20Forest%20Regression/random_forest_regression.py)
147+
* [Naive Bayes](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/NaiveBayes.ipynb)
148+
* [Decision Tree](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/decision_tree.py)
149+
* [Gradient Descent](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/gradient_descent.py)
150+
* [K Means Clust](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/k_means_clust.py)
151+
* [Linear Regression](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/linear_regression.py)
152+
* [Logistics Regression](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/logistic_regression.py)
153+
* [Perceptron](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/perceptron.py)
154+
* [Reuters One Vs Rest Classifier](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/reuters_one_vs_rest_classifier.ipynb)
155+
* [Scoring Functions](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/scoring_functions.py)
156+
## Maths
157+
* [Source](https://github.com/TheAlgorithms/Python/tree/master/maths)
158+
## Matrix
159+
* [Matrix Multiplication](https://github.com/TheAlgorithms/Python/blob/master/matrix/matrix_multiplication_addition.py)
160+
* [Search In Sorted Matrix](https://github.com/TheAlgorithms/Python/blob/master/matrix/searching_in_sorted_matrix.py)
161+
## Networking Flow
162+
* [Ford Fulkerson](https://github.com/TheAlgorithms/Python/blob/master/networking_flow/ford_fulkerson.py)
163+
* [Minimum Cut](https://github.com/TheAlgorithms/Python/blob/master/networking_flow/minimum_cut.py)
164+
## Neural Networks
165+
* [Bpnn](https://github.com/TheAlgorithms/Python/blob/master/neural_network/bpnn.py)
166+
* [Convolution Neural Network](https://github.com/TheAlgorithms/Python/blob/master/neural_network/convolution_neural_network.py)
167+
* [Fcn](https://github.com/TheAlgorithms/Python/blob/master/neural_network/fcn.ipynb)
168+
* [Perceptron](https://github.com/TheAlgorithms/Python/blob/master/neural_network/perceptron.py)
169+
## Misc. Others
170+
* [Source](https://github.com/TheAlgorithms/Python/tree/master/other)
171+
## Project Euler
172+
* [Source](https://github.com/TheAlgorithms/Python/tree/master/project_euler)
173+
## Search
174+
* [Binary Search](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py)
175+
* [Interpolation](https://github.com/TheAlgorithms/Python/blob/master/searches/interpolation_search.py)
176+
* [Jump Search](https://github.com/TheAlgorithms/Python/blob/master/searches/jump_search.py)
177+
* [Linear Search](https://github.com/TheAlgorithms/Python/blob/master/searches/linear_search.py)
178+
* [Quick Select](https://github.com/TheAlgorithms/Python/blob/master/searches/quick_select.py)
179+
* [Sentinel Linear Search](https://github.com/TheAlgorithms/Python/blob/master/searches/sentinel_linear_search.py)
180+
* [Tabu Search](https://github.com/TheAlgorithms/Python/blob/master/searches/tabu_search.py)
181+
* [Ternary Search](https://github.com/TheAlgorithms/Python/blob/master/searches/ternary_search.py)
182+
## Simple Client Server - Networking
183+
* [Client](https://github.com/TheAlgorithms/Python/blob/master/simple_client/client.py)
184+
* [Server](https://github.com/TheAlgorithms/Python/blob/master/simple_client/server.py)
185+
## Sorting
186+
* [Source](https://github.com/TheAlgorithms/Python/tree/master/sorts)
187+
## Strings
188+
* [Knuth Morris Pratt](https://github.com/TheAlgorithms/Python/blob/master/strings/knuth_morris_pratt.py)
189+
* [Levenshtein Distance](https://github.com/TheAlgorithms/Python/blob/master/strings/levenshtein_distance.py)
190+
* [Manacher](https://github.com/TheAlgorithms/Python/blob/master/strings/manacher.py)
191+
* [Min Cost String Conversion](https://github.com/TheAlgorithms/Python/blob/master/strings/min_cost_string_conversion.py)
192+
* [Naive String Search](https://github.com/TheAlgorithms/Python/blob/master/strings/naive_String_Search.py)
193+
* [Rabin Karp](https://github.com/TheAlgorithms/Python/blob/master/strings/rabin_karp.py)
194+
## Traversal
195+
* [Binary Tree Traversals](https://github.com/TheAlgorithms/Python/blob/master/traversals/binary_tree_traversals.py)

0 commit comments

Comments
 (0)