在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Python实现的所有算法

Python实现的所有算法

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:8.30M
  • 下载次数:2
  • 浏览次数:48
  • 发布时间:2024-05-28
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
Python实现的所有算法源码下载
这是一个包含所有Python实现算法的资源库,供教育目的使用。实现仅用于学习目的,可能比Python标准库中的实现效率低。请谨慎使用。
【实例截图】
【核心代码】
文件清单
└── Python-7b88e15b1cc67c784872b0d16189e516474cf5a5
    ├── audio_filters
    │   ├── butterworth_filter.py
    │   ├── equal_loudness_filter.py.broken.txt
    │   ├── iir_filter.py
    │   ├── __init__.py
    │   ├── loudness_curve.json
    │   ├── README.md
    │   └── show_response.py
    ├── backtracking
    │   ├── all_combinations.py
    │   ├── all_permutations.py
    │   ├── all_subsequences.py
    │   ├── coloring.py
    │   ├── combination_sum.py
    │   ├── crossword_puzzle_solver.py
    │   ├── generate_parentheses.py
    │   ├── hamiltonian_cycle.py
    │   ├── __init__.py
    │   ├── knight_tour.py
    │   ├── match_word_pattern.py
    │   ├── minimax.py
    │   ├── n_queens_math.py
    │   ├── n_queens.py
    │   ├── power_sum.py
    │   ├── rat_in_maze.py
    │   ├── README.md
    │   ├── sudoku.py
    │   ├── sum_of_subsets.py
    │   └── word_search.py
    ├── bit_manipulation
    │   ├── binary_and_operator.py
    │   ├── binary_coded_decimal.py
    │   ├── binary_count_setbits.py
    │   ├── binary_count_trailing_zeros.py
    │   ├── binary_or_operator.py
    │   ├── binary_shifts.py
    │   ├── binary_twos_complement.py
    │   ├── binary_xor_operator.py
    │   ├── bitwise_addition_recursive.py
    │   ├── count_1s_brian_kernighan_method.py
    │   ├── count_number_of_one_bits.py
    │   ├── excess_3_code.py
    │   ├── find_previous_power_of_two.py
    │   ├── gray_code_sequence.py
    │   ├── highest_set_bit.py
    │   ├── index_of_rightmost_set_bit.py
    │   ├── __init__.py
    │   ├── is_even.py
    │   ├── is_power_of_two.py
    │   ├── largest_pow_of_two_le_num.py
    │   ├── missing_number.py
    │   ├── numbers_different_signs.py
    │   ├── power_of_4.py
    │   ├── README.md
    │   ├── reverse_bits.py
    │   ├── single_bit_manipulation_operations.py
    │   └── swap_all_odd_and_even_bits.py
    ├── blockchain
    │   ├── diophantine_equation.py
    │   ├── __init__.py
    │   └── README.md
    ├── boolean_algebra
    │   ├── and_gate.py
    │   ├── imply_gate.py
    │   ├── __init__.py
    │   ├── karnaugh_map_simplification.py
    │   ├── multiplexer.py
    │   ├── nand_gate.py
    │   ├── nimply_gate.py
    │   ├── nor_gate.py
    │   ├── not_gate.py
    │   ├── or_gate.py
    │   ├── quine_mc_cluskey.py
    │   ├── README.md
    │   ├── xnor_gate.py
    │   └── xor_gate.py
    ├── cellular_automata
    │   ├── conways_game_of_life.py
    │   ├── game_of_life.py
    │   ├── __init__.py
    │   ├── langtons_ant.py
    │   ├── nagel_schrekenberg.py
    │   ├── one_dimensional.py
    │   ├── README.md
    │   └── wa_tor.py
    ├── ciphers
    │   ├── a1z26.py
    │   ├── affine_cipher.py
    │   ├── atbash.py
    │   ├── autokey.py
    │   ├── baconian_cipher.py
    │   ├── base16.py
    │   ├── base32.py
    │   ├── base64.py
    │   ├── base85.py
    │   ├── beaufort_cipher.py
    │   ├── bifid.py
    │   ├── brute_force_caesar_cipher.py
    │   ├── caesar_cipher.py
    │   ├── cryptomath_module.py
    │   ├── decrypt_caesar_with_chi_squared.py
    │   ├── deterministic_miller_rabin.py
    │   ├── diffie_hellman.py
    │   ├── diffie.py
    │   ├── elgamal_key_generator.py
    │   ├── enigma_machine2.py
    │   ├── fractionated_morse_cipher.py
    │   ├── hill_cipher.py
    │   ├── __init__.py
    │   ├── mixed_keyword_cypher.py
    │   ├── mono_alphabetic_ciphers.py
    │   ├── morse_code.py
    │   ├── onepad_cipher.py
    │   ├── permutation_cipher.py
    │   ├── playfair_cipher.py
    │   ├── polybius.py
    │   ├── porta_cipher.py
    │   ├── prehistoric_men.txt
    │   ├── rabin_miller.py
    │   ├── rail_fence_cipher.py
    │   ├── README.md
    │   ├── rot13.py
    │   ├── rsa_cipher.py
    │   ├── rsa_factorization.py
    │   ├── rsa_key_generator.py
    │   ├── running_key_cipher.py
    │   ├── shuffled_shift_cipher.py
    │   ├── simple_keyword_cypher.py
    │   ├── simple_substitution_cipher.py
    │   ├── transposition_cipher_encrypt_decrypt_file.py
    │   ├── transposition_cipher.py
    │   ├── trifid_cipher.py
    │   ├── vernam_cipher.py
    │   ├── vigenere_cipher.py
    │   └── xor_cipher.py
    ├── compression
    │   ├── burrows_wheeler.py
    │   ├── huffman.py
    │   ├── image_data
    │   │   ├── compressed_image.png
    │   │   ├── example_image.jpg
    │   │   ├── example_wikipedia_image.jpg
    │   │   ├── __init__.py
    │   │   ├── original_image.png
    │   │   ├── PSNR-example-base.png
    │   │   └── PSNR-example-comp-10.jpg
    │   ├── __init__.py
    │   ├── lempel_ziv_decompress.py
    │   ├── lempel_ziv.py
    │   ├── lz77.py
    │   ├── peak_signal_to_noise_ratio.py
    │   ├── README.md
    │   └── run_length_encoding.py
    ├── computer_vision
    │   ├── cnn_classification.py
    │   ├── flip_augmentation.py
    │   ├── haralick_descriptors.py
    │   ├── harris_corner.py
    │   ├── horn_schunck.py
    │   ├── __init__.py
    │   ├── mean_threshold.py
    │   ├── mosaic_augmentation.py
    │   ├── pooling_functions.py
    │   └── README.md
    ├── CONTRIBUTING.md
    ├── conversions
    │   ├── astronomical_length_scale_conversion.py
    │   ├── binary_to_decimal.py
    │   ├── binary_to_hexadecimal.py
    │   ├── binary_to_octal.py
    │   ├── convert_number_to_words.py
    │   ├── decimal_to_any.py
    │   ├── decimal_to_binary.py
    │   ├── decimal_to_hexadecimal.py
    │   ├── decimal_to_octal.py
    │   ├── energy_conversions.py
    │   ├── excel_title_to_column.py
    │   ├── hexadecimal_to_decimal.py
    │   ├── hex_to_bin.py
    │   ├── __init__.py
    │   ├── ipv4_conversion.py
    │   ├── length_conversion.py
    │   ├── molecular_chemistry.py
    │   ├── octal_to_binary.py
    │   ├── octal_to_decimal.py
    │   ├── octal_to_hexadecimal.py
    │   ├── prefix_conversions.py
    │   ├── prefix_conversions_string.py
    │   ├── pressure_conversions.py
    │   ├── README.md
    │   ├── rgb_cmyk_conversion.py
    │   ├── rgb_hsv_conversion.py
    │   ├── roman_numerals.py
    │   ├── speed_conversions.py
    │   ├── temperature_conversions.py
    │   ├── time_conversions.py
    │   ├── volume_conversions.py
    │   └── weight_conversion.py
    ├── data_structures
    │   ├── arrays
    │   │   ├── equilibrium_index_in_array.py
    │   │   ├── find_triplets_with_0_sum.py
    │   │   ├── index_2d_array_in_1d.py
    │   │   ├── __init__.py
    │   │   ├── kth_largest_element.py
    │   │   ├── median_two_array.py
    │   │   ├── monotonic_array.py
    │   │   ├── pairs_with_given_sum.py
    │   │   ├── permutations.py
    │   │   ├── prefix_sum.py
    │   │   ├── product_sum.py
    │   │   ├── sparse_table.py
    │   │   └── sudoku_solver.py
    │   ├── binary_tree
    │   │   ├── avl_tree.py
    │   │   ├── basic_binary_tree.py
    │   │   ├── binary_search_tree.py
    │   │   ├── binary_search_tree_recursive.py
    │   │   ├── binary_tree_mirror.py
    │   │   ├── binary_tree_node_sum.py
    │   │   ├── binary_tree_path_sum.py
    │   │   ├── binary_tree_traversals.py
    │   │   ├── diameter_of_binary_tree.py
    │   │   ├── diff_views_of_binary_tree.py
    │   │   ├── distribute_coins.py
    │   │   ├── fenwick_tree.py
    │   │   ├── flatten_binarytree_to_linkedlist.py
    │   │   ├── floor_and_ceiling.py
    │   │   ├── __init__.py
    │   │   ├── inorder_tree_traversal_2022.py
    │   │   ├── is_sorted.py
    │   │   ├── is_sum_tree.py
    │   │   ├── lazy_segment_tree.py
    │   │   ├── lowest_common_ancestor.py
    │   │   ├── maximum_fenwick_tree.py
    │   │   ├── merge_two_binary_trees.py
    │   │   ├── mirror_binary_tree.py
    │   │   ├── non_recursive_segment_tree.py
    │   │   ├── number_of_possible_binary_trees.py
    │   │   ├── README.md
    │   │   ├── red_black_tree.py
    │   │   ├── segment_tree_other.py
    │   │   ├── segment_tree.py
    │   │   ├── serialize_deserialize_binary_tree.py
    │   │   ├── symmetric_tree.py
    │   │   ├── treap.py
    │   │   └── wavelet_tree.py
    │   ├── disjoint_set
    │   │   ├── alternate_disjoint_set.py
    │   │   ├── disjoint_set.py
    │   │   └── __init__.py
    │   ├── hashing
    │   │   ├── bloom_filter.py
    │   │   ├── double_hash.py
    │   │   ├── hash_map.py
    │   │   ├── hash_table.py
    │   │   ├── hash_table_with_linked_list.py
    │   │   ├── __init__.py
    │   │   ├── number_theory
    │   │   │   ├── __init__.py
    │   │   │   └── prime_numbers.py
    │   │   ├── quadratic_probing.py
    │   │   └── tests
    │   │       ├── __init__.py
    │   │       └── test_hash_map.py
    │   ├── heap
    │   │   ├── binomial_heap.py
    │   │   ├── heap_generic.py
    │   │   ├── heap.py
    │   │   ├── __init__.py
    │   │   ├── max_heap.py
    │   │   ├── min_heap.py
    │   │   ├── randomized_heap.py
    │   │   └── skew_heap.py
    │   ├── __init__.py
    │   ├── linked_list
    │   │   ├── circular_linked_list.py
    │   │   ├── deque_doubly.py
    │   │   ├── doubly_linked_list.py
    │   │   ├── doubly_linked_list_two.py
    │   │   ├── floyds_cycle_detection.py
    │   │   ├── from_sequence.py
    │   │   ├── has_loop.py
    │   │   ├── __init__.py
    │   │   ├── is_palindrome.py
    │   │   ├── merge_two_lists.py
    │   │   ├── middle_element_of_linked_list.py
    │   │   ├── print_reverse.py
    │   │   ├── reverse_k_group.py
    │   │   ├── rotate_to_the_right.py
    │   │   ├── singly_linked_list.py
    │   │   ├── skip_list.py
    │   │   └── swap_nodes.py
    │   ├── queue
    │   │   ├── circular_queue_linked_list.py
    │   │   ├── circular_queue.py
    │   │   ├── double_ended_queue.py
    │   │   ├── __init__.py
    │   │   ├── linked_queue.py
    │   │   ├── priority_queue_using_list.py
    │   │   ├── queue_by_list.py
    │   │   ├── queue_by_two_stacks.py
    │   │   └── queue_on_pseudo_stack.py
    │   ├── stacks
    │   │   ├── balanced_parentheses.py
    │   │   ├── dijkstras_two_stack_algorithm.py
    │   │   ├── infix_to_postfix_conversion.py
    │   │   ├── infix_to_prefix_conversion.py
    │   │   ├── __init__.py
    │   │   ├── next_greater_element.py
    │   │   ├── postfix_evaluation.py
    │   │   ├── prefix_evaluation.py
    │   │   ├── stack.py
    │   │   ├── stack_using_two_queues.py
    │   │   ├── stack_with_doubly_linked_list.py
    │   │   ├── stack_with_singly_linked_list.py
    │   │   └── stock_span_problem.py
    │   └── trie
    │       ├── __init__.py
    │       ├── radix_tree.py
    │       └── trie.py
    ├── digital_image_processing
    │   ├── change_brightness.py
    │   ├── change_contrast.py
    │   ├── convert_to_negative.py
    │   ├── dithering
    │   │   ├── burkes.py
    │   │   └── __init__.py
    │   ├── edge_detection
    │   │   ├── canny.py
    │   │   └── __init__.py
    │   ├── filters
    │   │   ├── bilateral_filter.py
    │   │   ├── convolve.py
    │   │   ├── gabor_filter.py
    │   │   ├── gaussian_filter.py
    │   │   ├── __init__.py
    │   │   ├── laplacian_filter.py
    │   │   ├── local_binary_pattern.py
    │   │   ├── median_filter.py
    │   │   └── sobel_filter.py
    │   ├── histogram_equalization
    │   │   ├── histogram_stretch.py
    │   │   ├── image_data
    │   │   │   ├── __init__.py
    │   │   │   └── input.jpg
    │   │   ├── __init__.py
    │   │   └── output_data
    │   │       ├── __init__.py
    │   │       └── output.jpg
    │   ├── image_data
    │   │   ├── __init__.py
    │   │   ├── lena.jpg
    │   │   └── lena_small.jpg
    │   ├── index_calculation.py
    │   ├── __init__.py
    │   ├── morphological_operations
    │   │   ├── dilation_operation.py
    │   │   ├── erosion_operation.py
    │   │   └── __init__.py
    │   ├── resize
    │   │   ├── __init__.py
    │   │   └── resize.py
    │   ├── rotation
    │   │   ├── __init__.py
    │   │   └── rotation.py
    │   ├── sepia.py
    │   └── test_digital_image_processing.py
    ├── DIRECTORY.md
    ├── divide_and_conquer
    │   ├── closest_pair_of_points.py
    │   ├── convex_hull.py
    │   ├── heaps_algorithm_iterative.py
    │   ├── heaps_algorithm.py
    │   ├── __init__.py
    │   ├── inversions.py
    │   ├── kth_order_statistic.py
    │   ├── max_difference_pair.py
    │   ├── max_subarray.py
    │   ├── mergesort.py
    │   ├── peak.py
    │   ├── power.py
    │   └── strassen_matrix_multiplication.py
    ├── dynamic_programming
    │   ├── abbreviation.py
    │   ├── all_construct.py
    │   ├── bitmask.py
    │   ├── catalan_numbers.py
    │   ├── climbing_stairs.py
    │   ├── combination_sum_iv.py
    │   ├── edit_distance.py
    │   ├── factorial.py
    │   ├── fast_fibonacci.py
    │   ├── fibonacci.py
    │   ├── fizz_buzz.py
    │   ├── floyd_warshall.py
    │   ├── __init__.py
    │   ├── integer_partition.py
    │   ├── iterating_through_submasks.py
    │   ├── k_means_clustering_tensorflow.py
    │   ├── knapsack.py
    │   ├── largest_divisible_subset.py
    │   ├── longest_common_subsequence.py
    │   ├── longest_common_substring.py
    │   ├── longest_increasing_subsequence_o_nlogn.py
    │   ├── longest_increasing_subsequence.py
    │   ├── longest_palindromic_subsequence.py
    │   ├── matrix_chain_multiplication.py
    │   ├── matrix_chain_order.py
    │   ├── max_non_adjacent_sum.py
    │   ├── max_product_subarray.py
    │   ├── max_subarray_sum.py
    │   ├── min_distance_up_bottom.py
    │   ├── minimum_coin_change.py
    │   ├── minimum_cost_path.py
    │   ├── minimum_partition.py
    │   ├── minimum_size_subarray_sum.py
    │   ├── minimum_squares_to_represent_a_number.py
    │   ├── minimum_steps_to_one.py
    │   ├── minimum_tickets_cost.py
    │   ├── optimal_binary_search_tree.py
    │   ├── palindrome_partitioning.py
    │   ├── regex_match.py
    │   ├── rod_cutting.py
    │   ├── smith_waterman.py
    │   ├── subset_generation.py
    │   ├── sum_of_subset.py
    │   ├── trapped_water.py
    │   ├── tribonacci.py
    │   ├── viterbi.py
    │   ├── wildcard_matching.py
    │   └── word_break.py
    ├── electronics
    │   ├── apparent_power.py
    │   ├── builtin_voltage.py
    │   ├── capacitor_equivalence.py
    │   ├── carrier_concentration.py
    │   ├── charging_capacitor.py
    │   ├── charging_inductor.py
    │   ├── circular_convolution.py
    │   ├── coulombs_law.py
    │   ├── electrical_impedance.py
    │   ├── electric_conductivity.py
    │   ├── electric_power.py
    │   ├── ic_555_timer.py
    │   ├── ind_reactance.py
    │   ├── __init__.py
    │   ├── ohms_law.py
    │   ├── real_and_reactive_power.py
    │   ├── resistor_color_code.py
    │   ├── resistor_equivalence.py
    │   ├── resonant_frequency.py
    │   └── wheatstone_bridge.py
    ├── file_transfer
    │   ├── __init__.py
    │   ├── mytext.txt
    │   ├── receive_file.py
    │   ├── send_file.py
    │   └── tests
    │       ├── __init__.py
    │       └── test_send_file.py
    ├── financial
    │   ├── ABOUT.md
    │   ├── equated_monthly_installments.py
    │   ├── exponential_moving_average.py
    │   ├── __init__.py
    │   ├── interest.py
    │   ├── present_value.py
    │   ├── price_plus_tax.py
    │   └── simple_moving_average.py
    ├── fractals
    │   ├── __init__.py
    │   ├── julia_sets.py
    │   ├── koch_snowflake.py
    │   ├── mandelbrot.py
    │   ├── sierpinski_triangle.py
    │   └── vicsek.py
    ├── fuzzy_logic
    │   ├── fuzzy_operations.py
    │   ├── fuzzy_operations.py.DISABLED.txt
    │   └── __init__.py
    ├── genetic_algorithm
    │   ├── basic_string.py
    │   └── __init__.py
    ├── geodesy
    │   ├── haversine_distance.py
    │   ├── __init__.py
    │   └── lamberts_ellipsoidal_distance.py
    ├── geometry
    │   ├── geometry.py
    │   └── __init__.py
    ├── graphics
    │   ├── bezier_curve.py
    │   ├── __init__.py
    │   └── vector3_for_2d_rendering.py
    ├── graphs
    │   ├── ant_colony_optimization_algorithms.py
    │   ├── articulation_points.py
    │   ├── a_star.py
    │   ├── basic_graphs.py
    │   ├── bellman_ford.py
    │   ├── bidirectional_a_star.py
    │   ├── bidirectional_breadth_first_search.py
    │   ├── bi_directional_dijkstra.py
    │   ├── boruvka.py
    │   ├── breadth_first_search_2.py
    │   ├── breadth_first_search.py
    │   ├── breadth_first_search_shortest_path_2.py
    │   ├── breadth_first_search_shortest_path.py
    │   ├── breadth_first_search_zero_one_shortest_path.py
    │   ├── check_bipatrite.py
    │   ├── check_cycle.py
    │   ├── connected_components.py
    │   ├── deep_clone_graph.py
    │   ├── depth_first_search_2.py
    │   ├── depth_first_search.py
    │   ├── dijkstra_2.py
    │   ├── dijkstra_algorithm.py
    │   ├── dijkstra_alternate.py
    │   ├── dijkstra_binary_grid.py
    │   ├── dijkstra.py
    │   ├── dinic.py
    │   ├── directed_and_undirected_weighted_graph.py
    │   ├── edmonds_karp_multiple_source_and_sink.py
    │   ├── eulerian_path_and_circuit_for_undirected_graph.py
    │   ├── even_tree.py
    │   ├── finding_bridges.py
    │   ├── frequent_pattern_graph_miner.py
    │   ├── gale_shapley_bigraph.py
    │   ├── graph_adjacency_list.py
    │   ├── graph_adjacency_matrix.py
    │   ├── graph_list.py
    │   ├── graphs_floyd_warshall.py
    │   ├── greedy_best_first.py
    │   ├── greedy_min_vertex_cover.py
    │   ├── g_topological_sort.py
    │   ├── __init__.py
    │   ├── kahns_algorithm_long.py
    │   ├── kahns_algorithm_topo.py
    │   ├── karger.py
    │   ├── markov_chain.py
    │   ├── matching_min_vertex_cover.py
    │   ├── minimum_path_sum.py
    │   ├── minimum_spanning_tree_boruvka.py
    │   ├── minimum_spanning_tree_kruskal2.py
    │   ├── minimum_spanning_tree_kruskal.py
    │   ├── minimum_spanning_tree_prims2.py
    │   ├── minimum_spanning_tree_prims.py
    │   ├── multi_heuristic_astar.py
    │   ├── page_rank.py
    │   ├── prim.py
    │   ├── random_graph_generator.py
    │   ├── scc_kosaraju.py
    │   ├── strongly_connected_components.py
    │   ├── tarjans_scc.py
    │   └── tests
    │       ├── __init__.py
    │       ├── test_min_spanning_tree_kruskal.py
    │       └── test_min_spanning_tree_prim.py
    ├── greedy_methods
    │   ├── best_time_to_buy_and_sell_stock.py
    │   ├── fractional_cover_problem.py
    │   ├── fractional_knapsack_2.py
    │   ├── fractional_knapsack.py
    │   ├── gas_station.py
    │   ├── __init__.py
    │   ├── minimum_coin_change.py
    │   ├── minimum_waiting_time.py
    │   ├── optimal_merge_pattern.py
    │   └── smallest_range.py
    ├── hashes
    │   ├── adler32.py
    │   ├── chaos_machine.py
    │   ├── djb2.py
    │   ├── elf.py
    │   ├── enigma_machine.py
    │   ├── fletcher16.py
    │   ├── hamming_code.py
    │   ├── __init__.py
    │   ├── luhn.py
    │   ├── md5.py
    │   ├── README.md
    │   ├── sdbm.py
    │   ├── sha1.py
    │   └── sha256.py
    ├── knapsack
    │   ├── greedy_knapsack.py
    │   ├── __init__.py
    │   ├── knapsack.py
    │   ├── README.md
    │   ├── recursive_approach_knapsack.py
    │   └── tests
    │       ├── __init__.py
    │       ├── test_greedy_knapsack.py
    │       └── test_knapsack.py
    ├── LICENSE.md
    ├── linear_algebra
    │   ├── gaussian_elimination.py
    │   ├── __init__.py
    │   ├── jacobi_iteration_method.py
    │   ├── lu_decomposition.py
    │   ├── README.md
    │   └── src
    │       ├── conjugate_gradient.py
    │       ├── gaussian_elimination_pivoting
    │       │   ├── gaussian_elimination_pivoting.py
    │       │   ├── __init__.py
    │       │   └── matrix.txt
    │       ├── __init__.py
    │       ├── lib.py
    │       ├── polynom_for_points.py
    │       ├── power_iteration.py
    │       ├── rank_of_matrix.py
    │       ├── rayleigh_quotient.py
    │       ├── schur_complement.py
    │       ├── test_linear_algebra.py
    │       └── transformations_2d.py
    ├── linear_programming
    │   ├── __init__.py
    │   └── simplex.py
    ├── machine_learning
    │   ├── apriori_algorithm.py
    │   ├── astar.py
    │   ├── automatic_differentiation.py
    │   ├── data_transformations.py
    │   ├── decision_tree.py
    │   ├── dimensionality_reduction.py
    │   ├── forecasting
    │   │   ├── ex_data.csv
    │   │   ├── __init__.py
    │   │   └── run.py
    │   ├── frequent_pattern_growth.py
    │   ├── gaussian_naive_bayes.py.broken.txt
    │   ├── gradient_boosting_classifier.py
    │   ├── gradient_boosting_regressor.py.broken.txt
    │   ├── gradient_descent.py
    │   ├── __init__.py
    │   ├── k_means_clust.py
    │   ├── k_nearest_neighbours.py
    │   ├── linear_discriminant_analysis.py
    │   ├── linear_regression.py
    │   ├── local_weighted_learning
    │   │   ├── __init__.py
    │   │   ├── local_weighted_learning.md
    │   │   └── local_weighted_learning.py
    │   ├── logistic_regression.py
    │   ├── loss_functions.py
    │   ├── lstm
    │   │   ├── __init__.py
    │   │   ├── lstm_prediction.py
    │   │   └── sample_data.csv
    │   ├── mfcc.py
    │   ├── multilayer_perceptron_classifier.py
    │   ├── polynomial_regression.py
    │   ├── random_forest_classifier.py.broken.txt
    │   ├── random_forest_regressor.py.broken.txt
    │   ├── scoring_functions.py
    │   ├── self_organizing_map.py
    │   ├── sequential_minimum_optimization.py
    │   ├── similarity_search.py
    │   ├── support_vector_machines.py
    │   ├── word_frequency_functions.py
    │   ├── xgboost_classifier.py
    │   └── xgboost_regressor.py
    ├── maths
    │   ├── abs.py
    │   ├── addition_without_arithmetic.py
    │   ├── aliquot_sum.py
    │   ├── allocation_number.py
    │   ├── arc_length.py
    │   ├── area.py
    │   ├── area_under_curve.py
    │   ├── average_absolute_deviation.py
    │   ├── average_mean.py
    │   ├── average_median.py
    │   ├── average_mode.py
    │   ├── bailey_borwein_plouffe.py
    │   ├── base_neg2_conversion.py
    │   ├── basic_maths.py
    │   ├── binary_exponentiation.py
    │   ├── binary_multiplication.py
    │   ├── binomial_coefficient.py
    │   ├── binomial_distribution.py
    │   ├── ceil.py
    │   ├── chebyshev_distance.py
    │   ├── check_polygon.py
    │   ├── chinese_remainder_theorem.py
    │   ├── chudnovsky_algorithm.py
    │   ├── collatz_sequence.py
    │   ├── combinations.py
    │   ├── continued_fraction.py
    │   ├── decimal_isolate.py
    │   ├── decimal_to_fraction.py
    │   ├── dodecahedron.py
    │   ├── double_factorial.py
    │   ├── dual_number_automatic_differentiation.py
    │   ├── entropy.py
    │   ├── euclidean_distance.py
    │   ├── euler_method.py
    │   ├── euler_modified.py
    │   ├── eulers_totient.py
    │   ├── extended_euclidean_algorithm.py
    │   ├── factorial.py
    │   ├── factors.py
    │   ├── fast_inverse_sqrt.py
    │   ├── fermat_little_theorem.py
    │   ├── fibonacci.py
    │   ├── find_max.py
    │   ├── find_min.py
    │   ├── floor.py
    │   ├── gamma.py
    │   ├── gaussian.py
    │   ├── gcd_of_n_numbers.py
    │   ├── germain_primes.py
    │   ├── greatest_common_divisor.py
    │   ├── hardy_ramanujanalgo.py
    │   ├── images
    │   │   ├── gaussian.png
    │   │   └── __init__.py
    │   ├── __init__.py
    │   ├── integer_square_root.py
    │   ├── interquartile_range.py
    │   ├── is_int_palindrome.py
    │   ├── is_ip_v4_address_valid.py
    │   ├── is_square_free.py
    │   ├── jaccard_similarity.py
    │   ├── joint_probability_distribution.py
    │   ├── josephus_problem.py
    │   ├── juggler_sequence.py
    │   ├── karatsuba.py
    │   ├── kth_lexicographic_permutation.py
    │   ├── largest_of_very_large_numbers.py
    │   ├── least_common_multiple.py
    │   ├── line_length.py
    │   ├── liouville_lambda.py
    │   ├── lucas_lehmer_primality_test.py
    │   ├── lucas_series.py
    │   ├── maclaurin_series.py
    │   ├── manhattan_distance.py
    │   ├── matrix_exponentiation.py
    │   ├── max_sum_sliding_window.py
    │   ├── median_of_two_arrays.py
    │   ├── minkowski_distance.py
    │   ├── mobius_function.py
    │   ├── modular_division.py
    │   ├── modular_exponential.py
    │   ├── monte_carlo_dice.py
    │   ├── monte_carlo.py
    │   ├── number_of_digits.py
    │   ├── numerical_analysis
    │   │   ├── adams_bashforth.py
    │   │   ├── bisection_2.py
    │   │   ├── bisection.py
    │   │   ├── __init__.py
    │   │   ├── integration_by_simpson_approx.py
    │   │   ├── intersection.py
    │   │   ├── nevilles_method.py
    │   │   ├── newton_forward_interpolation.py
    │   │   ├── newton_raphson.py
    │   │   ├── numerical_integration.py
    │   │   ├── proper_fractions.py
    │   │   ├── runge_kutta_fehlberg_45.py
    │   │   ├── runge_kutta_gills.py
    │   │   ├── runge_kutta.py
    │   │   ├── secant_method.py
    │   │   ├── simpson_rule.py
    │   │   └── square_root.py
    │   ├── odd_sieve.py
    │   ├── perfect_cube.py
    │   ├── perfect_number.py
    │   ├── perfect_square.py
    │   ├── persistence.py
    │   ├── pi_generator.py
    │   ├── pi_monte_carlo_estimation.py
    │   ├── points_are_collinear_3d.py
    │   ├── pollard_rho.py
    │   ├── polynomial_evaluation.py
    │   ├── polynomials
    │   │   ├── __init__.py
    │   │   └── single_indeterminate_operations.py
    │   ├── power_using_recursion.py
    │   ├── prime_check.py
    │   ├── prime_factors.py
    │   ├── primelib.py
    │   ├── prime_numbers.py
    │   ├── prime_sieve_eratosthenes.py
    │   ├── print_multiplication_table.py
    │   ├── pythagoras.py
    │   ├── qr_decomposition.py
    │   ├── quadratic_equations_complex_numbers.py
    │   ├── radians.py
    │   ├── radix2_fft.py
    │   ├── remove_digit.py
    │   ├── segmented_sieve.py
    │   ├── series
    │   │   ├── arithmetic.py
    │   │   ├── geometric.py
    │   │   ├── geometric_series.py
    │   │   ├── harmonic.py
    │   │   ├── harmonic_series.py
    │   │   ├── hexagonal_numbers.py
    │   │   ├── __init__.py
    │   │   └── p_series.py
    │   ├── sieve_of_eratosthenes.py
    │   ├── sigmoid.py
    │   ├── signum.py
    │   ├── simultaneous_linear_equation_solver.py
    │   ├── sin.py
    │   ├── sock_merchant.py
    │   ├── softmax.py
    │   ├── solovay_strassen_primality_test.py
    │   ├── spearman_rank_correlation_coefficient.py
    │   ├── special_numbers
    │   │   ├── armstrong_numbers.py
    │   │   ├── automorphic_number.py
    │   │   ├── bell_numbers.py
    │   │   ├── carmichael_number.py
    │   │   ├── catalan_number.py
    │   │   ├── hamming_numbers.py
    │   │   ├── happy_number.py
    │   │   ├── harshad_numbers.py
    │   │   ├── hexagonal_number.py
    │   │   ├── __init__.py
    │   │   ├── krishnamurthy_number.py
    │   │   ├── perfect_number.py
    │   │   ├── polygonal_numbers.py
    │   │   ├── pronic_number.py
    │   │   ├── proth_number.py
    │   │   ├── triangular_numbers.py
    │   │   ├── ugly_numbers.py
    │   │   └── weird_number.py
    │   ├── sum_of_arithmetic_series.py
    │   ├── sum_of_digits.py
    │   ├── sum_of_geometric_progression.py
    │   ├── sum_of_harmonic_series.py
    │   ├── sumset.py
    │   ├── sylvester_sequence.py
    │   ├── tanh.py
    │   ├── test_prime_check.py
    │   ├── three_sum.py
    │   ├── trapezoidal_rule.py
    │   ├── triplet_sum.py
    │   ├── twin_prime.py
    │   ├── two_pointer.py
    │   ├── two_sum.py
    │   ├── volume.py
    │   └── zellers_congruence.py
    ├── matrix
    │   ├── binary_search_matrix.py
    │   ├── count_islands_in_matrix.py
    │   ├── count_negative_numbers_in_sorted_matrix.py
    │   ├── count_paths.py
    │   ├── cramers_rule_2x2.py
    │   ├── __init__.py
    │   ├── inverse_of_matrix.py
    │   ├── largest_square_area_in_matrix.py
    │   ├── matrix_class.py
    │   ├── matrix_multiplication_recursion.py
    │   ├── matrix_operation.py
    │   ├── max_area_of_island.py
    │   ├── median_matrix.py
    │   ├── nth_fibonacci_using_matrix_exponentiation.py
    │   ├── pascal_triangle.py
    │   ├── rotate_matrix.py
    │   ├── searching_in_sorted_matrix.py
    │   ├── sherman_morrison.py
    │   ├── spiral_print.py
    │   ├── tests
    │   │   ├── __init__.py
    │   │   ├── pytest.ini
    │   │   └── test_matrix_operation.py
    │   └── validate_sudoku_board.py
    ├── networking_flow
    │   ├── ford_fulkerson.py
    │   ├── __init__.py
    │   └── minimum_cut.py
    ├── neural_network
    │   ├── activation_functions
    │   │   ├── binary_step.py
    │   │   ├── exponential_linear_unit.py
    │   │   ├── gaussian_error_linear_unit.py
    │   │   ├── __init__.py
    │   │   ├── leaky_rectified_linear_unit.py
    │   │   ├── mish.py
    │   │   ├── rectified_linear_unit.py
    │   │   ├── scaled_exponential_linear_unit.py
    │   │   ├── soboleva_modified_hyperbolic_tangent.py
    │   │   ├── softplus.py
    │   │   ├── squareplus.py
    │   │   └── swish.py
    │   ├── back_propagation_neural_network.py
    │   ├── convolution_neural_network.py
    │   ├── gan.py_tf
    │   ├── __init__.py
    │   ├── input_data.py
    │   ├── perceptron.py.DISABLED
    │   ├── simple_neural_network.py
    │   └── two_hidden_layers_neural_network.py
    ├── other
    │   ├── activity_selection.py
    │   ├── alternative_list_arrange.py
    │   ├── bankers_algorithm.py
    │   ├── davis_putnam_logemann_loveland.py
    │   ├── doomsday.py
    │   ├── fischer_yates_shuffle.py
    │   ├── gauss_easter.py
    │   ├── graham_scan.py
    │   ├── greedy.py
    │   ├── guess_the_number_search.py
    │   ├── h_index.py
    │   ├── __init__.py
    │   ├── least_recently_used.py
    │   ├── lfu_cache.py
    │   ├── linear_congruential_generator.py
    │   ├── lru_cache.py
    │   ├── magicdiamondpattern.py
    │   ├── majority_vote_algorithm.py
    │   ├── maximum_subsequence.py
    │   ├── nested_brackets.py
    │   ├── number_container_system.py
    │   ├── password.py
    │   ├── quine.py
    │   ├── scoring_algorithm.py
    │   ├── sdes.py
    │   ├── tower_of_hanoi.py
    │   └── word_search.py
    ├── physics
    │   ├── altitude_pressure.py
    │   ├── archimedes_principle_of_buoyant_force.py
    │   ├── basic_orbital_capture.py
    │   ├── casimir_effect.py
    │   ├── center_of_mass.py
    │   ├── centripetal_force.py
    │   ├── coulombs_law.py
    │   ├── doppler_frequency.py
    │   ├── grahams_law.py
    │   ├── horizontal_projectile_motion.py
    │   ├── hubble_parameter.py
    │   ├── ideal_gas_law.py
    │   ├── image_data
    │   │   ├── 2D_problems_1.jpg
    │   │   ├── 2D_problems.jpg
    │   │   └── __init__.py
    │   ├── __init__.py
    │   ├── in_static_equilibrium.py
    │   ├── kinetic_energy.py
    │   ├── lens_formulae.py
    │   ├── lorentz_transformation_four_vector.py
    │   ├── malus_law.py
    │   ├── mass_energy_equivalence.py
    │   ├── mirror_formulae.py
    │   ├── n_body_simulation.py
    │   ├── newtons_law_of_gravitation.py
    │   ├── newtons_second_law_of_motion.py
    │   ├── photoelectric_effect.py
    │   ├── potential_energy.py
    │   ├── reynolds_number.py
    │   ├── rms_speed_of_molecule.py
    │   ├── shear_stress.py
    │   ├── speed_of_sound.py
    │   ├── speeds_of_gas_molecules.py
    │   └── terminal_velocity.py
    ├── project_euler
    │   ├── __init__.py
    │   ├── problem_001
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   ├── sol3.py
    │   │   ├── sol4.py
    │   │   ├── sol5.py
    │   │   ├── sol6.py
    │   │   └── sol7.py
    │   ├── problem_002
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   ├── sol3.py
    │   │   ├── sol4.py
    │   │   └── sol5.py
    │   ├── problem_003
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   └── sol3.py
    │   ├── problem_004
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   └── sol2.py
    │   ├── problem_005
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   └── sol2.py
    │   ├── problem_006
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   ├── sol3.py
    │   │   └── sol4.py
    │   ├── problem_007
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   └── sol3.py
    │   ├── problem_008
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   └── sol3.py
    │   ├── problem_009
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   └── sol3.py
    │   ├── problem_010
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   └── sol3.py
    │   ├── problem_011
    │   │   ├── grid.txt
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   └── sol2.py
    │   ├── problem_012
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   └── sol2.py
    │   ├── problem_013
    │   │   ├── __init__.py
    │   │   ├── num.txt
    │   │   └── sol1.py
    │   ├── problem_014
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   └── sol2.py
    │   ├── problem_015
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_016
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   └── sol2.py
    │   ├── problem_017
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_018
    │   │   ├── __init__.py
    │   │   ├── solution.py
    │   │   └── triangle.txt
    │   ├── problem_019
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_020
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   ├── sol3.py
    │   │   └── sol4.py
    │   ├── problem_021
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_022
    │   │   ├── __init__.py
    │   │   ├── p022_names.txt
    │   │   ├── sol1.py
    │   │   └── sol2.py
    │   ├── problem_023
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_024
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_025
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   └── sol3.py
    │   ├── problem_026
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_027
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_028
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_029
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_030
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_031
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   └── sol2.py
    │   ├── problem_032
    │   │   ├── __init__.py
    │   │   └── sol32.py
    │   ├── problem_033
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_034
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_035
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_036
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_037
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_038
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_039
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_040
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_041
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_042
    │   │   ├── __init__.py
    │   │   ├── solution42.py
    │   │   └── words.txt
    │   ├── problem_043
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_044
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_045
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_046
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_047
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_048
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_049
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_050
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_051
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_052
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_053
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_054
    │   │   ├── __init__.py
    │   │   ├── poker_hands.txt
    │   │   ├── sol1.py
    │   │   └── test_poker_hand.py
    │   ├── problem_055
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_056
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_057
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_058
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_059
    │   │   ├── __init__.py
    │   │   ├── p059_cipher.txt
    │   │   ├── sol1.py
    │   │   └── test_cipher.txt
    │   ├── problem_062
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_063
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_064
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_065
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_067
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   ├── sol2.py
    │   │   └── triangle.txt
    │   ├── problem_068
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_069
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_070
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_071
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_072
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   └── sol2.py
    │   ├── problem_073
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_074
    │   │   ├── __init__.py
    │   │   ├── sol1.py
    │   │   └── sol2.py
    │   ├── problem_075
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_076
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_077
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_078
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_079
    │   │   ├── __init__.py
    │   │   ├── keylog_test.txt
    │   │   ├── keylog.txt
    │   │   └── sol1.py
    │   ├── problem_080
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_081
    │   │   ├── __init__.py
    │   │   ├── matrix.txt
    │   │   └── sol1.py
    │   ├── problem_082
    │   │   ├── __init__.py
    │   │   ├── input.txt
    │   │   ├── sol1.py
    │   │   └── test_matrix.txt
    │   ├── problem_085
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_086
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_087
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_089
    │   │   ├── __init__.py
    │   │   ├── numeralcleanup_test.txt
    │   │   ├── p089_roman.txt
    │   │   └── sol1.py
    │   ├── problem_091
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_092
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_094
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_097
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_099
    │   │   ├── base_exp.txt
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_100
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_101
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_102
    │   │   ├── __init__.py
    │   │   ├── p102_triangles.txt
    │   │   ├── sol1.py
    │   │   └── test_triangles.txt
    │   ├── problem_104
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_107
    │   │   ├── __init__.py
    │   │   ├── p107_network.txt
    │   │   ├── sol1.py
    │   │   └── test_network.txt
    │   ├── problem_109
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_112
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_113
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_114
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_115
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_116
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_117
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_119
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_120
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_121
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_123
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_125
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_129
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_131
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_135
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_144
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_145
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_173
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_174
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_180
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_187
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_188
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_191
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_203
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_205
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_206
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_207
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_234
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_301
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_493
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_551
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_587
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_686
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   ├── problem_800
    │   │   ├── __init__.py
    │   │   └── sol1.py
    │   └── README.md
    ├── pyproject.toml
    ├── quantum
    │   ├── bb84.py.DISABLED.txt
    │   ├── deutsch_jozsa.py.DISABLED.txt
    │   ├── half_adder.py.DISABLED.txt
    │   ├── __init__.py
    │   ├── not_gate.py.DISABLED.txt
    │   ├── q_fourier_transform.py
    │   ├── q_full_adder.py.DISABLED.txt
    │   ├── quantum_entanglement.py.DISABLED.txt
    │   ├── quantum_random.py.DISABLED.txt
    │   ├── quantum_teleportation.py.DISABLED.txt
    │   ├── README.md
    │   ├── ripple_adder_classic.py.DISABLED.txt
    │   ├── single_qubit_measure.py.DISABLED.txt
    │   └── superdense_coding.py.DISABLED.txt
    ├── README.md
    ├── requirements.txt
    ├── scheduling
    │   ├── first_come_first_served.py
    │   ├── highest_response_ratio_next.py
    │   ├── __init__.py
    │   ├── job_sequence_with_deadline.py
    │   ├── job_sequencing_with_deadline.py
    │   ├── multi_level_feedback_queue.py
    │   ├── non_preemptive_shortest_job_first.py
    │   ├── round_robin.py
    │   └── shortest_job_first.py
    ├── scripts
    │   ├── build_directory_md.py
    │   ├── __init__.py
    │   ├── project_euler_answers.json
    │   ├── validate_filenames.py
    │   └── validate_solutions.py
    ├── searches
    │   ├── binary_search.py
    │   ├── binary_tree_traversal.py
    │   ├── double_linear_search.py
    │   ├── double_linear_search_recursion.py
    │   ├── fibonacci_search.py
    │   ├── hill_climbing.py
    │   ├── __init__.py
    │   ├── interpolation_search.py
    │   ├── jump_search.py
    │   ├── linear_search.py
    │   ├── median_of_medians.py
    │   ├── quick_select.py
    │   ├── sentinel_linear_search.py
    │   ├── simple_binary_search.py
    │   ├── simulated_annealing.py
    │   ├── tabu_search.py
    │   ├── tabu_test_data.txt
    │   └── ternary_search.py
    ├── sorts
    │   ├── bead_sort.py
    │   ├── binary_insertion_sort.py
    │   ├── bitonic_sort.py
    │   ├── bogo_sort.py
    │   ├── bubble_sort.py
    │   ├── bucket_sort.py
    │   ├── circle_sort.py
    │   ├── cocktail_shaker_sort.py
    │   ├── comb_sort.py
    │   ├── counting_sort.py
    │   ├── cycle_sort.py
    │   ├── double_sort.py
    │   ├── dutch_national_flag_sort.py
    │   ├── exchange_sort.py
    │   ├── external_sort.py
    │   ├── gnome_sort.py
    │   ├── heap_sort.py
    │   ├── __init__.py
    │   ├── insertion_sort.py
    │   ├── intro_sort.py
    │   ├── iterative_merge_sort.py
    │   ├── merge_insertion_sort.py
    │   ├── merge_sort.py
    │   ├── msd_radix_sort.py
    │   ├── natural_sort.py
    │   ├── normal_distribution_quick_sort.md
    │   ├── odd_even_sort.py
    │   ├── odd_even_transposition_parallel.py
    │   ├── odd_even_transposition_single_threaded.py
    │   ├── pancake_sort.py
    │   ├── patience_sort.py
    │   ├── pigeonhole_sort.py
    │   ├── pigeon_sort.py
    │   ├── quick_sort_3_partition.py
    │   ├── quick_sort.py
    │   ├── radix_sort.py
    │   ├── README.md
    │   ├── recursive_insertion_sort.py
    │   ├── recursive_mergesort_array.py
    │   ├── recursive_quick_sort.py
    │   ├── selection_sort.py
    │   ├── shell_sort.py
    │   ├── shrink_shell_sort.py
    │   ├── slowsort.py
    │   ├── stooge_sort.py
    │   ├── strand_sort.py
    │   ├── tim_sort.py
    │   ├── topological_sort.py
    │   ├── tree_sort.py
    │   ├── unknown_sort.py
    │   └── wiggle_sort.py
    ├── strings
    │   ├── aho_corasick.py
    │   ├── alternative_string_arrange.py
    │   ├── anagrams.py
    │   ├── anagrams.txt
    │   ├── autocomplete_using_trie.py
    │   ├── barcode_validator.py
    │   ├── bitap_string_match.py
    │   ├── boyer_moore_search.py
    │   ├── camel_case_to_snake_case.py
    │   ├── can_string_be_rearranged_as_palindrome.py
    │   ├── capitalize.py
    │   ├── check_anagrams.py
    │   ├── credit_card_validator.py
    │   ├── damerau_levenshtein_distance.py
    │   ├── detecting_english_programmatically.py
    │   ├── dictionary.txt
    │   ├── dna.py
    │   ├── edit_distance.py
    │   ├── frequency_finder.py
    │   ├── hamming_distance.py
    │   ├── indian_phone_validator.py
    │   ├── __init__.py
    │   ├── is_contains_unique_chars.py
    │   ├── is_isogram.py
    │   ├── is_pangram.py
    │   ├── is_polish_national_id.py
    │   ├── is_spain_national_id.py
    │   ├── is_srilankan_phone_number.py
    │   ├── is_valid_email_address.py
    │   ├── jaro_winkler.py
    │   ├── join.py
    │   ├── knuth_morris_pratt.py
    │   ├── levenshtein_distance.py
    │   ├── lower.py
    │   ├── manacher.py
    │   ├── min_cost_string_conversion.py
    │   ├── naive_string_search.py
    │   ├── ngram.py
    │   ├── palindrome.py
    │   ├── pig_latin.py
    │   ├── prefix_function.py
    │   ├── rabin_karp.py
    │   ├── remove_duplicate.py
    │   ├── reverse_letters.py
    │   ├── reverse_words.py
    │   ├── snake_case_to_camel_pascal_case.py
    │   ├── split.py
    │   ├── string_switch_case.py
    │   ├── strip.py
    │   ├── text_justification.py
    │   ├── title.py
    │   ├── top_k_frequent_words.py
    │   ├── upper.py
    │   ├── wave.py
    │   ├── wildcard_pattern_matching.py
    │   ├── word_occurrence.py
    │   ├── word_patterns.py
    │   ├── words.txt
    │   └── z_function.py
    └── web_programming
        ├── co2_emission.py
        ├── covid_stats_via_xpath.py
        ├── crawl_google_results.py
        ├── crawl_google_scholar_citation.py
        ├── currency_converter.py
        ├── current_stock_price.py
        ├── current_weather.py
        ├── daily_horoscope.py
        ├── download_images_from_google_query.py
        ├── emails_from_url.py
        ├── fetch_anime_and_play.py
        ├── fetch_bbc_news.py
        ├── fetch_github_info.py
        ├── fetch_jobs.py
        ├── fetch_quotes.py
        ├── fetch_well_rx_price.py
        ├── get_amazon_product_data.py
        ├── get_imdb_top_250_movies_csv.py
        ├── get_imdbtop.py.DISABLED
        ├── get_ip_geolocation.py
        ├── get_top_billionaires.py
        ├── get_top_hn_posts.py
        ├── get_user_tweets.py
        ├── giphy.py
        ├── __init__.py
        ├── instagram_crawler.py
        ├── instagram_pic.py
        ├── instagram_video.py
        ├── nasa_data.py
        ├── open_google_results.py
        ├── random_anime_character.py
        ├── recaptcha_verification.py
        ├── reddit.py
        ├── search_books_by_isbn.py
        ├── slack_message.py
        ├── test_fetch_github_info.py
        └── world_covid19_stats.py

210 directories, 1401 files

标签:

实例下载地址

Python实现的所有算法

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警