|
86 | 86 | * [Baconian Cipher](ciphers/baconian_cipher.py) |
87 | 87 | * [Base16](ciphers/base16.py) |
88 | 88 | * [Base32](ciphers/base32.py) |
89 | | - * [Base64](ciphers/base64.py) |
| 89 | + * [Base64 Cipher](ciphers/base64_cipher.py) |
90 | 90 | * [Base85](ciphers/base85.py) |
91 | 91 | * [Beaufort Cipher](ciphers/beaufort_cipher.py) |
92 | 92 | * [Bifid](ciphers/bifid.py) |
|
142 | 142 | * [Haralick Descriptors](computer_vision/haralick_descriptors.py) |
143 | 143 | * [Harris Corner](computer_vision/harris_corner.py) |
144 | 144 | * [Horn Schunck](computer_vision/horn_schunck.py) |
| 145 | + * [Intensity Based Segmentation](computer_vision/intensity_based_segmentation.py) |
145 | 146 | * [Mean Threshold](computer_vision/mean_threshold.py) |
146 | 147 | * [Mosaic Augmentation](computer_vision/mosaic_augmentation.py) |
147 | 148 | * [Pooling Functions](computer_vision/pooling_functions.py) |
|
169 | 170 | * [Prefix Conversions](conversions/prefix_conversions.py) |
170 | 171 | * [Prefix Conversions String](conversions/prefix_conversions_string.py) |
171 | 172 | * [Pressure Conversions](conversions/pressure_conversions.py) |
| 173 | + * [Rectangular To Polar](conversions/rectangular_to_polar.py) |
172 | 174 | * [Rgb Cmyk Conversion](conversions/rgb_cmyk_conversion.py) |
173 | 175 | * [Rgb Hsv Conversion](conversions/rgb_hsv_conversion.py) |
174 | 176 | * [Roman Numerals](conversions/roman_numerals.py) |
|
273 | 275 | * [Singly Linked List](data_structures/linked_list/singly_linked_list.py) |
274 | 276 | * [Skip List](data_structures/linked_list/skip_list.py) |
275 | 277 | * [Swap Nodes](data_structures/linked_list/swap_nodes.py) |
276 | | - * Queue |
277 | | - * [Circular Queue](data_structures/queue/circular_queue.py) |
278 | | - * [Circular Queue Linked List](data_structures/queue/circular_queue_linked_list.py) |
279 | | - * [Double Ended Queue](data_structures/queue/double_ended_queue.py) |
280 | | - * [Linked Queue](data_structures/queue/linked_queue.py) |
281 | | - * [Priority Queue Using List](data_structures/queue/priority_queue_using_list.py) |
282 | | - * [Queue By List](data_structures/queue/queue_by_list.py) |
283 | | - * [Queue By Two Stacks](data_structures/queue/queue_by_two_stacks.py) |
284 | | - * [Queue On Pseudo Stack](data_structures/queue/queue_on_pseudo_stack.py) |
| 278 | + * Queues |
| 279 | + * [Circular Queue](data_structures/queues/circular_queue.py) |
| 280 | + * [Circular Queue Linked List](data_structures/queues/circular_queue_linked_list.py) |
| 281 | + * [Double Ended Queue](data_structures/queues/double_ended_queue.py) |
| 282 | + * [Linked Queue](data_structures/queues/linked_queue.py) |
| 283 | + * [Priority Queue Using List](data_structures/queues/priority_queue_using_list.py) |
| 284 | + * [Queue By List](data_structures/queues/queue_by_list.py) |
| 285 | + * [Queue By Two Stacks](data_structures/queues/queue_by_two_stacks.py) |
| 286 | + * [Queue On Pseudo Stack](data_structures/queues/queue_on_pseudo_stack.py) |
285 | 287 | * Stacks |
286 | 288 | * [Balanced Parentheses](data_structures/stacks/balanced_parentheses.py) |
287 | 289 | * [Dijkstras Two Stack Algorithm](data_structures/stacks/dijkstras_two_stack_algorithm.py) |
|
375 | 377 | * [Longest Common Subsequence](dynamic_programming/longest_common_subsequence.py) |
376 | 378 | * [Longest Common Substring](dynamic_programming/longest_common_substring.py) |
377 | 379 | * [Longest Increasing Subsequence](dynamic_programming/longest_increasing_subsequence.py) |
| 380 | + * [Longest Increasing Subsequence Iterative](dynamic_programming/longest_increasing_subsequence_iterative.py) |
378 | 381 | * [Longest Increasing Subsequence O Nlogn](dynamic_programming/longest_increasing_subsequence_o_nlogn.py) |
379 | 382 | * [Longest Palindromic Subsequence](dynamic_programming/longest_palindromic_subsequence.py) |
380 | 383 | * [Matrix Chain Multiplication](dynamic_programming/matrix_chain_multiplication.py) |
|
460 | 463 |
|
461 | 464 | ## Graphics |
462 | 465 | * [Bezier Curve](graphics/bezier_curve.py) |
| 466 | + * [Butterfly Pattern](graphics/butterfly_pattern.py) |
| 467 | + * [Digital Differential Analyzer Line](graphics/digital_differential_analyzer_line.py) |
463 | 468 | * [Vector3 For 2D Rendering](graphics/vector3_for_2d_rendering.py) |
464 | 469 |
|
465 | 470 | ## Graphs |
|
506 | 511 | * [Kahns Algorithm Long](graphs/kahns_algorithm_long.py) |
507 | 512 | * [Kahns Algorithm Topo](graphs/kahns_algorithm_topo.py) |
508 | 513 | * [Karger](graphs/karger.py) |
| 514 | + * [Lanczos Eigenvectors](graphs/lanczos_eigenvectors.py) |
509 | 515 | * [Markov Chain](graphs/markov_chain.py) |
510 | 516 | * [Matching Min Vertex Cover](graphs/matching_min_vertex_cover.py) |
511 | 517 | * [Minimum Path Sum](graphs/minimum_path_sum.py) |
|
660 | 666 | * [Gamma](maths/gamma.py) |
661 | 667 | * [Gaussian](maths/gaussian.py) |
662 | 668 | * [Gcd Of N Numbers](maths/gcd_of_n_numbers.py) |
| 669 | + * [Geometric Mean](maths/geometric_mean.py) |
663 | 670 | * [Germain Primes](maths/germain_primes.py) |
664 | 671 | * [Greatest Common Divisor](maths/greatest_common_divisor.py) |
665 | 672 | * [Hardy Ramanujanalgo](maths/hardy_ramanujanalgo.py) |
|
885 | 892 | * [N Body Simulation](physics/n_body_simulation.py) |
886 | 893 | * [Newtons Law Of Gravitation](physics/newtons_law_of_gravitation.py) |
887 | 894 | * [Newtons Second Law Of Motion](physics/newtons_second_law_of_motion.py) |
| 895 | + * [Period Of Pendulum](physics/period_of_pendulum.py) |
888 | 896 | * [Photoelectric Effect](physics/photoelectric_effect.py) |
889 | 897 | * [Potential Energy](physics/potential_energy.py) |
890 | 898 | * [Rainfall Intensity](physics/rainfall_intensity.py) |
|
1325 | 1333 | * [Title](strings/title.py) |
1326 | 1334 | * [Top K Frequent Words](strings/top_k_frequent_words.py) |
1327 | 1335 | * [Upper](strings/upper.py) |
1328 | | - * [Wave](strings/wave.py) |
| 1336 | + * [Wave String](strings/wave_string.py) |
1329 | 1337 | * [Wildcard Pattern Matching](strings/wildcard_pattern_matching.py) |
1330 | 1338 | * [Word Occurrence](strings/word_occurrence.py) |
1331 | 1339 | * [Word Patterns](strings/word_patterns.py) |
|
0 commit comments