|
22 | 22 | * [Rat In Maze](backtracking/rat_in_maze.py) |
23 | 23 | * [Sudoku](backtracking/sudoku.py) |
24 | 24 | * [Sum Of Subsets](backtracking/sum_of_subsets.py) |
| 25 | + * [Word Break](backtracking/word_break.py) |
| 26 | + * [Word Ladder](backtracking/word_ladder.py) |
25 | 27 | * [Word Search](backtracking/word_search.py) |
26 | 28 |
|
27 | 29 | ## Bit Manipulation |
|
98 | 100 | * [Elgamal Key Generator](ciphers/elgamal_key_generator.py) |
99 | 101 | * [Enigma Machine2](ciphers/enigma_machine2.py) |
100 | 102 | * [Fractionated Morse Cipher](ciphers/fractionated_morse_cipher.py) |
| 103 | + * [Gronsfeld Cipher](ciphers/gronsfeld_cipher.py) |
101 | 104 | * [Hill Cipher](ciphers/hill_cipher.py) |
102 | 105 | * [Mixed Keyword Cypher](ciphers/mixed_keyword_cypher.py) |
103 | 106 | * [Mono Alphabetic Ciphers](ciphers/mono_alphabetic_ciphers.py) |
|
210 | 213 | * [Lazy Segment Tree](data_structures/binary_tree/lazy_segment_tree.py) |
211 | 214 | * [Lowest Common Ancestor](data_structures/binary_tree/lowest_common_ancestor.py) |
212 | 215 | * [Maximum Fenwick Tree](data_structures/binary_tree/maximum_fenwick_tree.py) |
| 216 | + * [Maximum Sum Bst](data_structures/binary_tree/maximum_sum_bst.py) |
213 | 217 | * [Merge Two Binary Trees](data_structures/binary_tree/merge_two_binary_trees.py) |
214 | 218 | * [Mirror Binary Tree](data_structures/binary_tree/mirror_binary_tree.py) |
215 | 219 | * [Non Recursive Segment Tree](data_structures/binary_tree/non_recursive_segment_tree.py) |
|
283 | 287 | * [Dijkstras Two Stack Algorithm](data_structures/stacks/dijkstras_two_stack_algorithm.py) |
284 | 288 | * [Infix To Postfix Conversion](data_structures/stacks/infix_to_postfix_conversion.py) |
285 | 289 | * [Infix To Prefix Conversion](data_structures/stacks/infix_to_prefix_conversion.py) |
| 290 | + * [Lexicographical Numbers](data_structures/stacks/lexicographical_numbers.py) |
286 | 291 | * [Next Greater Element](data_structures/stacks/next_greater_element.py) |
287 | 292 | * [Postfix Evaluation](data_structures/stacks/postfix_evaluation.py) |
288 | 293 | * [Prefix Evaluation](data_structures/stacks/prefix_evaluation.py) |
|
291 | 296 | * [Stack With Doubly Linked List](data_structures/stacks/stack_with_doubly_linked_list.py) |
292 | 297 | * [Stack With Singly Linked List](data_structures/stacks/stack_with_singly_linked_list.py) |
293 | 298 | * [Stock Span Problem](data_structures/stacks/stock_span_problem.py) |
| 299 | + * Suffix Tree |
| 300 | + * Example |
| 301 | + * [Example Usage](data_structures/suffix_tree/example/example_usage.py) |
| 302 | + * [Suffix Tree](data_structures/suffix_tree/suffix_tree.py) |
| 303 | + * [Suffix Tree Node](data_structures/suffix_tree/suffix_tree_node.py) |
| 304 | + * Tests |
| 305 | + * [Test Suffix Tree](data_structures/suffix_tree/tests/test_suffix_tree.py) |
294 | 306 | * Trie |
295 | 307 | * [Radix Tree](data_structures/trie/radix_tree.py) |
296 | 308 | * [Trie](data_structures/trie/trie.py) |
|
339 | 351 | * [Power](divide_and_conquer/power.py) |
340 | 352 | * [Strassen Matrix Multiplication](divide_and_conquer/strassen_matrix_multiplication.py) |
341 | 353 |
|
| 354 | +## Docs |
| 355 | + * [Conf](docs/conf.py) |
| 356 | + |
342 | 357 | ## Dynamic Programming |
343 | 358 | * [Abbreviation](dynamic_programming/abbreviation.py) |
344 | 359 | * [All Construct](dynamic_programming/all_construct.py) |
|
1193 | 1208 | * [Binary Tree Traversal](searches/binary_tree_traversal.py) |
1194 | 1209 | * [Double Linear Search](searches/double_linear_search.py) |
1195 | 1210 | * [Double Linear Search Recursion](searches/double_linear_search_recursion.py) |
| 1211 | + * [Exponential Search](searches/exponential_search.py) |
1196 | 1212 | * [Fibonacci Search](searches/fibonacci_search.py) |
1197 | 1213 | * [Hill Climbing](searches/hill_climbing.py) |
1198 | 1214 | * [Interpolation Search](searches/interpolation_search.py) |
|
1336 | 1352 | * [Get Ip Geolocation](web_programming/get_ip_geolocation.py) |
1337 | 1353 | * [Get Top Billionaires](web_programming/get_top_billionaires.py) |
1338 | 1354 | * [Get Top Hn Posts](web_programming/get_top_hn_posts.py) |
1339 | | - * [Get User Tweets](web_programming/get_user_tweets.py) |
1340 | 1355 | * [Giphy](web_programming/giphy.py) |
1341 | 1356 | * [Instagram Crawler](web_programming/instagram_crawler.py) |
1342 | 1357 | * [Instagram Pic](web_programming/instagram_pic.py) |
|
0 commit comments