2019-12-07 15:29:25 +08:00
## Backtracking
2022-08-12 02:41:41 +08:00
* [Graph Coloring ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/graph_coloring.cpp )
2019-12-07 15:29:25 +08:00
* [Knight Tour ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/knight_tour.cpp )
2021-07-17 18:06:19 +08:00
* [Magic Sequence ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/magic_sequence.cpp )
2019-12-07 15:29:25 +08:00
* [Minimax ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/minimax.cpp )
* [N Queens ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/n_queens.cpp )
2020-05-24 00:13:05 +08:00
* [N Queens All Solution Optimised ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/n_queens_all_solution_optimised.cpp )
2020-01-09 00:46:57 +08:00
* [Nqueen Print All Solutions ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/nqueen_print_all_solutions.cpp )
2019-12-07 15:29:25 +08:00
* [Rat Maze ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/rat_maze.cpp )
2021-07-22 03:22:16 +08:00
* [Subarray Sum ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/subarray_sum.cpp )
2021-07-13 09:19:03 +08:00
* [Subset Sum ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/subset_sum.cpp )
2022-09-11 08:43:55 +08:00
* [Sudoku Solver ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/sudoku_solver.cpp )
2021-08-08 08:29:46 +08:00
* [Wildcard Matching ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/backtracking/wildcard_matching.cpp )
2019-12-07 15:29:25 +08:00
2021-02-17 10:38:29 +08:00
## Bit Manipulation
2022-01-12 02:51:39 +08:00
* [Count Bits Flip ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/bit_manipulation/count_bits_flip.cpp )
2021-07-09 17:43:57 +08:00
* [Count Of Set Bits ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/bit_manipulation/count_of_set_bits.cpp )
2021-07-30 00:41:52 +08:00
* [Count Of Trailing Ciphers In Factorial N ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/bit_manipulation/count_of_trailing_ciphers_in_factorial_n.cpp )
2021-02-17 10:38:29 +08:00
* [Hamming Distance ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/bit_manipulation/hamming_distance.cpp )
2022-01-16 23:57:24 +08:00
* [Set Kth Bit ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/bit_manipulation/set_kth_bit.cpp )
2021-02-17 10:38:29 +08:00
2020-06-27 08:37:39 +08:00
## Ciphers
2021-10-22 13:48:41 +08:00
* [A1Z26 Cipher ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/a1z26_cipher.cpp )
2021-10-19 08:54:00 +08:00
* [Atbash Cipher ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/atbash_cipher.cpp )
2021-03-31 13:16:54 +08:00
* [Base64 Encoding ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/base64_encoding.cpp )
2020-07-20 02:50:47 +08:00
* [Caesar Cipher ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/caesar_cipher.cpp )
2021-04-14 13:34:01 +08:00
* [Elliptic Curve Key Exchange ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/elliptic_curve_key_exchange.cpp )
2020-06-27 08:37:39 +08:00
* [Hill Cipher ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/hill_cipher.cpp )
2020-10-20 05:25:28 +08:00
* [Morse Code ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/morse_code.cpp )
2021-04-14 13:34:01 +08:00
* [Uint128 T ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/uint128_t.hpp )
* [Uint256 T ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/uint256_t.hpp )
2020-07-21 01:51:30 +08:00
* [Vigenere Cipher ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/vigenere_cipher.cpp )
2020-07-20 04:46:35 +08:00
* [Xor Cipher ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/xor_cipher.cpp )
2020-06-27 08:37:39 +08:00
2021-10-16 00:34:00 +08:00
## Cpu Scheduling Algorithms
* [Fcfs Scheduling ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/cpu_scheduling_algorithms/fcfs_scheduling.cpp )
2020-06-20 00:04:56 +08:00
## Data Structures
* [Avltree ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/avltree.cpp )
* [Binary Search Tree ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binary_search_tree.cpp )
2021-02-05 18:07:16 +08:00
* [Binary Search Tree2 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binary_search_tree2.cpp )
2020-06-20 00:04:56 +08:00
* [Binaryheap ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binaryheap.cpp )
2022-09-14 00:04:06 +08:00
* [Bloom Filter ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/bloom_filter.cpp )
2020-06-20 00:04:56 +08:00
* [Circular Queue Using Linked List ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/circular_queue_using_linked_list.cpp )
2020-01-09 00:46:57 +08:00
* Cll
2020-06-20 00:04:56 +08:00
* [Cll ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/cll/cll.cpp )
* [Cll ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/cll/cll.h )
* [Main Cll ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/cll/main_cll.cpp )
* [Disjoint Set ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/disjoint_set.cpp )
* [Doubly Linked List ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/doubly_linked_list.cpp )
2021-10-24 23:41:13 +08:00
* [Dsu Path Compression ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/dsu_path_compression.cpp )
* [Dsu Union Rank ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/dsu_union_rank.cpp )
2020-06-20 00:04:56 +08:00
* [Linked List ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/linked_list.cpp )
* [Linkedlist Implentation Usingarray ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/linkedlist_implentation_usingarray.cpp )
* [List Array ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/list_array.cpp )
* [Morrisinorder ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/morrisinorder.cpp )
* [Queue ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/queue.h )
* [Queue Using Array ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/queue_using_array.cpp )
* [Queue Using Array2 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/queue_using_array2.cpp )
* [Queue Using Linked List ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/queue_using_linked_list.cpp )
* [Queue Using Linkedlist ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/queue_using_linkedlist.cpp )
2020-07-19 05:01:51 +08:00
* [Queue Using Two Stacks ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/queue_using_two_stacks.cpp )
2021-03-12 03:03:15 +08:00
* [Rb Tree ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/rb_tree.cpp )
2021-09-27 08:03:53 +08:00
* [Reverse A Linked List ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/reverse_a_linked_list.cpp )
2020-07-13 21:34:13 +08:00
* [Skip List ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/skip_list.cpp )
2021-06-08 04:24:49 +08:00
* [Sparse Table ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/sparse_table.cpp )
2020-06-20 00:04:56 +08:00
* [Stack ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack.h )
* [Stack Using Array ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack_using_array.cpp )
* [Stack Using Linked List ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack_using_linked_list.cpp )
2021-10-18 22:42:16 +08:00
* [Stack Using Queue ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack_using_queue.cpp )
2020-06-20 00:04:56 +08:00
* [Test Queue ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/test_queue.cpp )
* [Test Stack ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/test_stack.cpp )
* [Test Stack Students ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/test_stack_students.cpp )
* [Tree ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/tree.cpp )
2020-12-01 13:46:49 +08:00
* [Tree 234 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/tree_234.cpp )
2020-06-20 00:04:56 +08:00
* [Trie Modern ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/trie_modern.cpp )
* [Trie Tree ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/trie_tree.cpp )
2021-03-19 02:28:33 +08:00
* [Trie Using Hashmap ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/trie_using_hashmap.cpp )
2019-12-07 15:29:25 +08:00
2021-08-09 21:00:42 +08:00
## Divide And Conquer
* [Karatsuba Algorithm For Fast Multiplication ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/divide_and_conquer/karatsuba_algorithm_for_fast_multiplication.cpp )
2019-12-07 15:29:25 +08:00
## Dynamic Programming
2020-06-20 00:04:56 +08:00
* [0 1 Knapsack ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/0_1_knapsack.cpp )
2021-03-12 03:03:15 +08:00
* [Abbreviation ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/abbreviation.cpp )
2019-12-22 22:17:51 +08:00
* [Armstrong Number ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/armstrong_number.cpp )
2020-06-20 00:04:56 +08:00
* [Bellman Ford ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/bellman_ford.cpp )
* [Catalan Numbers ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/catalan_numbers.cpp )
* [Coin Change ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/coin_change.cpp )
2020-10-31 14:12:24 +08:00
* [Coin Change Topdown ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/coin_change_topdown.cpp )
2020-06-20 00:04:56 +08:00
* [Cut Rod ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/cut_rod.cpp )
* [Edit Distance ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/edit_distance.cpp )
* [Egg Dropping Puzzle ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/egg_dropping_puzzle.cpp )
* [Fibonacci Bottom Up ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/fibonacci_bottom_up.cpp )
* [Floyd Warshall ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/floyd_warshall.cpp )
2021-07-10 03:02:28 +08:00
* [House Robber ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/house_robber.cpp )
2019-12-22 22:17:51 +08:00
* [Kadane ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/kadane.cpp )
2020-09-24 02:42:14 +08:00
* [Kadane2 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/kadane2.cpp )
2019-12-07 15:29:25 +08:00
* [Longest Common String ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/longest_common_string.cpp )
2020-06-20 00:04:56 +08:00
* [Longest Common Subsequence ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/longest_common_subsequence.cpp )
* [Longest Increasing Subsequence ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/longest_increasing_subsequence.cpp )
* [Longest Increasing Subsequence (Nlogn) ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/longest_increasing_subsequence_(nlogn ).cpp)
2021-02-05 17:46:52 +08:00
* [Longest Palindromic Subsequence ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/longest_palindromic_subsequence.cpp )
2020-06-20 00:04:56 +08:00
* [Matrix Chain Multiplication ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/matrix_chain_multiplication.cpp )
2021-04-12 18:34:13 +08:00
* [Minimum Edit Distance ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/minimum_edit_distance.cpp )
2020-10-26 03:21:24 +08:00
* [Palindrome Partitioning ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/palindrome_partitioning.cpp )
2021-11-15 00:55:54 +08:00
* [Partition Problem ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/partition_problem.cpp )
2020-04-22 20:53:26 +08:00
* [Searching Of Element In Dynamic Array ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/searching_of_element_in_dynamic_array.cpp )
2020-08-17 21:38:14 +08:00
* [Shortest Common Supersequence ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/shortest_common_supersequence.cpp )
2020-04-21 21:13:18 +08:00
* [Tree Height ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/tree_height.cpp )
2020-10-17 03:54:42 +08:00
* [Word Break ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/word_break.cpp )
2019-12-07 15:29:25 +08:00
2020-05-30 22:58:01 +08:00
## Geometry
2021-11-15 00:56:46 +08:00
* [Graham Scan Algorithm ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/geometry/graham_scan_algorithm.cpp )
* [Graham Scan Functions ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/geometry/graham_scan_functions.hpp )
2020-08-17 14:36:56 +08:00
* [Jarvis Algorithm ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/geometry/jarvis_algorithm.cpp )
2020-05-30 22:58:01 +08:00
* [Line Segment Intersection ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/geometry/line_segment_intersection.cpp )
2019-12-07 15:29:25 +08:00
## Graph
2020-11-21 02:58:12 +08:00
* [Bidirectional Dijkstra ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/bidirectional_dijkstra.cpp )
2020-08-08 20:30:00 +08:00
* [Breadth First Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/breadth_first_search.cpp )
2020-05-24 20:09:31 +08:00
* [Bridge Finding With Tarjan Algorithm ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/bridge_finding_with_tarjan_algorithm.cpp )
2020-05-19 14:45:56 +08:00
* [Connected Components ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/connected_components.cpp )
2020-05-22 04:45:15 +08:00
* [Connected Components With Dsu ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/connected_components_with_dsu.cpp )
2020-06-20 00:04:56 +08:00
* [Cycle Check Directed Graph ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/cycle_check_directed_graph.cpp )
2020-08-09 10:14:27 +08:00
* [Depth First Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/depth_first_search.cpp )
* [Depth First Search With Stack ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/depth_first_search_with_stack.cpp )
2020-06-20 00:04:56 +08:00
* [Dijkstra ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/dijkstra.cpp )
2020-07-30 01:39:13 +08:00
* [Hamiltons Cycle ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/hamiltons_cycle.cpp )
2020-10-16 20:41:51 +08:00
* [Hopcroft Karp ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/hopcroft_karp.cpp )
2020-08-17 03:33:27 +08:00
* [Is Graph Bipartite ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/is_graph_bipartite.cpp )
2021-10-28 09:48:58 +08:00
* [Is Graph Bipartite2 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/is_graph_bipartite2.cpp )
2019-12-07 15:29:25 +08:00
* [Kosaraju ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/kosaraju.cpp )
2020-06-20 00:04:56 +08:00
* [Kruskal ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/kruskal.cpp )
2020-08-15 00:35:11 +08:00
* [Lowest Common Ancestor ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/lowest_common_ancestor.cpp )
2020-05-25 23:18:11 +08:00
* [Max Flow With Ford Fulkerson And Edmond Karp Algo ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/max_flow_with_ford_fulkerson_and_edmond_karp_algo.cpp )
2020-05-21 23:26:08 +08:00
* [Prim ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/prim.cpp )
2020-06-20 00:04:56 +08:00
* [Topological Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/topological_sort.cpp )
2020-05-22 22:14:06 +08:00
* [Topological Sort By Kahns Algo ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/topological_sort_by_kahns_algo.cpp )
2021-09-13 01:19:06 +08:00
* [Travelling Salesman Problem ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graph/travelling_salesman_problem.cpp )
2019-12-07 15:29:25 +08:00
2020-07-11 00:47:37 +08:00
## Graphics
* [Spirograph ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/graphics/spirograph.cpp )
2019-12-07 15:29:25 +08:00
## Greedy Algorithms
2020-06-20 00:04:56 +08:00
* [Dijkstra ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/greedy_algorithms/dijkstra.cpp )
2019-12-22 22:17:51 +08:00
* [Huffman ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/greedy_algorithms/huffman.cpp )
2020-10-02 20:22:58 +08:00
* [Jumpgame ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/greedy_algorithms/jumpgame.cpp )
2020-06-20 00:04:56 +08:00
* [Knapsack ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/greedy_algorithms/knapsack.cpp )
* [Kruskals Minimum Spanning Tree ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/greedy_algorithms/kruskals_minimum_spanning_tree.cpp )
* [Prims Minimum Spanning Tree ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/greedy_algorithms/prims_minimum_spanning_tree.cpp )
2019-12-07 15:29:25 +08:00
## Hashing
2020-06-20 00:04:56 +08:00
* [Chaining ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/hashing/chaining.cpp )
2019-12-21 16:17:30 +08:00
* [Double Hash Hash Table ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/hashing/double_hash_hash_table.cpp )
* [Linear Probing Hash Table ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/hashing/linear_probing_hash_table.cpp )
2021-09-25 00:35:31 +08:00
* [Md5 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/hashing/md5.cpp )
2019-12-21 16:17:30 +08:00
* [Quadratic Probing Hash Table ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/hashing/quadratic_probing_hash_table.cpp )
2021-09-25 03:59:26 +08:00
* [Sha1 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/hashing/sha1.cpp )
2019-12-07 15:29:25 +08:00
2020-06-20 00:04:56 +08:00
## Machine Learning
2021-03-26 00:30:03 +08:00
* [A Star Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/a_star_search.cpp )
2020-06-20 00:04:56 +08:00
* [Adaline Learning ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/adaline_learning.cpp )
* [Kohonen Som Topology ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/kohonen_som_topology.cpp )
* [Kohonen Som Trace ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/kohonen_som_trace.cpp )
2020-08-25 20:23:25 +08:00
* [Neural Network ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/neural_network.cpp )
2020-06-26 21:04:18 +08:00
* [Ordinary Least Squares Regressor ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/ordinary_least_squares_regressor.cpp )
2020-08-25 20:23:25 +08:00
* [Vector Ops ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/machine_learning/vector_ops.hpp )
2020-06-20 00:04:56 +08:00
2019-12-07 15:29:25 +08:00
## Math
2022-02-02 13:32:02 +08:00
* [Approximate Pi ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/approximate_pi.cpp )
2021-10-25 02:22:40 +08:00
* [Area ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/area.cpp )
2020-06-25 17:51:24 +08:00
* [Armstrong Number ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/armstrong_number.cpp )
2020-04-04 23:02:02 +08:00
* [Binary Exponent ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/binary_exponent.cpp )
2021-02-23 03:21:58 +08:00
* [Binomial Calculate ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/binomial_calculate.cpp )
2020-06-24 03:34:19 +08:00
* [Check Amicable Pair ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/check_amicable_pair.cpp )
2020-10-05 20:52:27 +08:00
* [Check Factorial ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/check_factorial.cpp )
2020-06-13 23:45:53 +08:00
* [Check Prime ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/check_prime.cpp )
2020-06-24 03:02:47 +08:00
* [Complex Numbers ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/complex_numbers.cpp )
2020-05-24 00:13:05 +08:00
* [Double Factorial ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/double_factorial.cpp )
2020-04-01 05:29:20 +08:00
* [Eulers Totient Function ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/eulers_totient_function.cpp )
2020-05-18 20:32:42 +08:00
* [Extended Euclid Algorithm ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/extended_euclid_algorithm.cpp )
2019-12-07 15:29:25 +08:00
* [Factorial ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/factorial.cpp )
2020-01-09 00:46:57 +08:00
* [Fast Power ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/fast_power.cpp )
2020-05-19 23:50:31 +08:00
* [Fibonacci ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/fibonacci.cpp )
2020-06-20 00:04:56 +08:00
* [Fibonacci Fast ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/fibonacci_fast.cpp )
* [Fibonacci Large ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/fibonacci_large.cpp )
2021-02-05 17:43:02 +08:00
* [Fibonacci Matrix Exponentiation ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/fibonacci_matrix_exponentiation.cpp )
2020-10-31 01:53:02 +08:00
* [Fibonacci Sum ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/fibonacci_sum.cpp )
2021-09-04 03:49:37 +08:00
* [Finding Number Of Digits In A Number ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/finding_number_of_digits_in_a_number.cpp )
2020-06-20 00:04:56 +08:00
* [Gcd Iterative Euclidean ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/gcd_iterative_euclidean.cpp )
* [Gcd Of N Numbers ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/gcd_of_n_numbers.cpp )
* [Gcd Recursive Euclidean ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/gcd_recursive_euclidean.cpp )
2021-04-23 00:41:44 +08:00
* [Integral Approximation ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/integral_approximation.cpp )
2021-10-16 09:34:15 +08:00
* [Integral Approximation2 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/integral_approximation2.cpp )
2021-09-02 00:20:01 +08:00
* [Inv Sqrt ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/inv_sqrt.cpp )
2020-06-20 00:04:56 +08:00
* [Large Factorial ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/large_factorial.cpp )
* [Large Number ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/large_number.h )
2020-11-25 17:18:50 +08:00
* [Largest Power ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/largest_power.cpp )
2020-10-20 05:39:00 +08:00
* [Lcm Sum ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/lcm_sum.cpp )
2020-06-13 06:47:55 +08:00
* [Least Common Multiple ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/least_common_multiple.cpp )
2021-03-18 02:27:51 +08:00
* [Linear Recurrence Matrix ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/linear_recurrence_matrix.cpp )
2020-10-19 04:13:56 +08:00
* [Magic Number ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/magic_number.cpp )
2020-06-22 01:42:10 +08:00
* [Miller Rabin ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/miller_rabin.cpp )
2021-01-18 04:44:52 +08:00
* [Modular Division ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/modular_division.cpp )
2020-10-30 04:22:32 +08:00
* [Modular Exponentiation ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/modular_exponentiation.cpp )
2020-05-15 07:21:24 +08:00
* [Modular Inverse Fermat Little Theorem ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/modular_inverse_fermat_little_theorem.cpp )
2022-06-09 23:27:12 +08:00
* [Modular Inverse Simple ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/modular_inverse_simple.cpp )
2021-07-30 01:29:27 +08:00
* [N Bonacci ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/n_bonacci.cpp )
2020-11-17 03:39:52 +08:00
* [N Choose R ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/n_choose_r.cpp )
2020-11-23 01:35:01 +08:00
* [Ncr Modulo P ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/ncr_modulo_p.cpp )
2020-04-16 22:18:23 +08:00
* [Number Of Positive Divisors ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/number_of_positive_divisors.cpp )
2022-02-02 13:32:02 +08:00
* [Perimeter ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/perimeter.cpp )
2019-12-07 15:29:25 +08:00
* [Power For Huge Numbers ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/power_for_huge_numbers.cpp )
2021-02-12 12:44:01 +08:00
* [Power Of Two ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/power_of_two.cpp )
2019-12-07 15:29:25 +08:00
* [Prime Factorization ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/prime_factorization.cpp )
* [Prime Numbers ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/prime_numbers.cpp )
2020-06-20 00:04:56 +08:00
* [Primes Up To Billion ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/primes_up_to_billion.cpp )
* [Realtime Stats ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/realtime_stats.cpp )
2019-12-07 15:29:25 +08:00
* [Sieve Of Eratosthenes ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/sieve_of_eratosthenes.cpp )
2020-04-27 08:34:36 +08:00
* [Sqrt Double ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/sqrt_double.cpp )
2020-06-20 00:04:56 +08:00
* [String Fibonacci ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/string_fibonacci.cpp )
2020-10-28 16:53:57 +08:00
* [Sum Of Binomial Coefficient ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/sum_of_binomial_coefficient.cpp )
2020-06-22 20:05:14 +08:00
* [Sum Of Digits ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/sum_of_digits.cpp )
2021-02-05 17:43:45 +08:00
* [Vector Cross Product ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/vector_cross_product.cpp )
2021-10-26 15:49:58 +08:00
* [Volume ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/volume.cpp )
2020-06-20 00:04:56 +08:00
## Numerical Methods
2021-11-08 00:36:08 +08:00
* [Babylonian Method ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/babylonian_method.cpp )
2020-06-20 00:04:56 +08:00
* [Bisection Method ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/bisection_method.cpp )
2020-06-22 10:31:55 +08:00
* [Brent Method Extrema ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/brent_method_extrema.cpp )
2021-11-04 02:22:08 +08:00
* [Composite Simpson Rule ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/composite_simpson_rule.cpp )
2020-06-20 00:04:56 +08:00
* [Durand Kerner Roots ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/durand_kerner_roots.cpp )
* [False Position ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/false_position.cpp )
2021-11-03 00:52:18 +08:00
* [Fast Fourier Transform ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/fast_fourier_transform.cpp )
2020-06-20 00:04:56 +08:00
* [Gaussian Elimination ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/gaussian_elimination.cpp )
2020-06-21 12:10:37 +08:00
* [Golden Search Extrema ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/golden_search_extrema.cpp )
2022-06-09 23:27:12 +08:00
* [Gram Schmidt ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/gram_schmidt.cpp )
2021-11-04 03:16:21 +08:00
* [Inverse Fast Fourier Transform ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/inverse_fast_fourier_transform.cpp )
2020-06-20 00:04:56 +08:00
* [Lu Decompose ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/lu_decompose.cpp )
2020-06-26 02:43:00 +08:00
* [Lu Decomposition ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/lu_decomposition.h )
2021-11-01 21:56:40 +08:00
* [Midpoint Integral Method ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/midpoint_integral_method.cpp )
2020-06-20 00:04:56 +08:00
* [Newton Raphson Method ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/newton_raphson_method.cpp )
* [Ode Forward Euler ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/ode_forward_euler.cpp )
* [Ode Midpoint Euler ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/ode_midpoint_euler.cpp )
* [Ode Semi Implicit Euler ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/ode_semi_implicit_euler.cpp )
* [Qr Decompose ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/qr_decompose.h )
* [Qr Decomposition ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/qr_decomposition.cpp )
* [Qr Eigen Values ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/qr_eigen_values.cpp )
2020-10-31 00:29:24 +08:00
* [Rungekutta ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/rungekutta.cpp )
2020-06-20 00:04:56 +08:00
* [Successive Approximation ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/successive_approximation.cpp )
2019-12-07 15:29:25 +08:00
## Operations On Datastructures
2020-06-20 00:04:56 +08:00
* [Array Left Rotation ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/array_left_rotation.cpp )
* [Array Right Rotation ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/array_right_rotation.cpp )
* [Circular Linked List ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/circular_linked_list.cpp )
* [Circular Queue Using Array ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/circular_queue_using_array.cpp )
2020-05-19 12:59:55 +08:00
* [Get Size Of Linked List ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/get_size_of_linked_list.cpp )
2021-07-18 13:02:08 +08:00
* [Inorder Successor Of Bst ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/inorder_successor_of_bst.cpp )
2021-10-24 23:19:27 +08:00
* [Intersection Of Two Arrays ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/intersection_of_two_arrays.cpp )
2020-06-20 00:04:56 +08:00
* [Reverse A Linked List Using Recusion ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/reverse_a_linked_list_using_recusion.cpp )
2021-10-20 05:53:07 +08:00
* [Reverse Binary Tree ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/reverse_binary_tree.cpp )
2020-06-20 00:04:56 +08:00
* [Selectionsortlinkedlist ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/selectionsortlinkedlist.cpp )
2021-02-24 16:33:25 +08:00
* [Trie Multiple Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/trie_multiple_search.cpp )
2021-10-22 03:21:39 +08:00
* [Union Of Two Arrays ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/operations_on_datastructures/union_of_two_arrays.cpp )
2019-12-07 15:29:25 +08:00
## Others
2020-06-20 00:04:56 +08:00
* [Buzz Number ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/buzz_number.cpp )
* [Decimal To Binary ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/decimal_to_binary.cpp )
* [Decimal To Hexadecimal ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/decimal_to_hexadecimal.cpp )
* [Decimal To Roman Numeral ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/decimal_to_roman_numeral.cpp )
2021-10-16 03:05:54 +08:00
* [Easter ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/easter.cpp )
2020-08-25 20:23:25 +08:00
* [Fast Integer Input ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/fast_integer_input.cpp )
2019-12-22 22:17:51 +08:00
* [Happy Number ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/happy_number.cpp )
2021-07-06 08:32:41 +08:00
* [Iterative Tree Traversals ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/iterative_tree_traversals.cpp )
2021-10-16 00:15:53 +08:00
* [Kadanes3 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/kadanes3.cpp )
2021-08-18 01:25:08 +08:00
* [Lru Cache ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/lru_cache.cpp )
2019-12-22 22:17:51 +08:00
* [Matrix Exponentiation ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/matrix_exponentiation.cpp )
2020-06-20 00:04:56 +08:00
* [Palindrome Of Number ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/palindrome_of_number.cpp )
* [Paranthesis Matching ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/paranthesis_matching.cpp )
2019-12-22 22:17:51 +08:00
* [Pascal Triangle ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/pascal_triangle.cpp )
2020-10-01 02:48:39 +08:00
* [Postfix Evaluation ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/postfix_evaluation.cpp )
2020-06-20 00:04:56 +08:00
* [Primality Test ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/primality_test.cpp )
2022-01-12 09:00:30 +08:00
* [Recursive Tree Traversal ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/recursive_tree_traversal.cpp )
2020-06-20 00:04:56 +08:00
* [Smallest Circle ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/smallest_circle.cpp )
* [Sparse Matrix ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/sparse_matrix.cpp )
2019-12-22 22:17:51 +08:00
* [Spiral Print ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/spiral_print.cpp )
2020-04-20 18:05:31 +08:00
* [Stairs Pattern ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/stairs_pattern.cpp )
2020-06-20 00:04:56 +08:00
* [Tower Of Hanoi ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/tower_of_hanoi.cpp )
2019-12-07 15:29:25 +08:00
* [Vector Important Functions ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/others/vector_important_functions.cpp )
2020-04-26 17:51:54 +08:00
## Probability
* [Addition Rule ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/probability/addition_rule.cpp )
2020-05-24 00:13:05 +08:00
* [Bayes Theorem ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/probability/bayes_theorem.cpp )
* [Binomial Dist ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/probability/binomial_dist.cpp )
2021-10-14 05:22:32 +08:00
* [Geometric Dist ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/probability/geometric_dist.cpp )
2020-05-22 04:49:02 +08:00
* [Poisson Dist ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/probability/poisson_dist.cpp )
2021-10-07 07:55:45 +08:00
* [Windowed Median ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/probability/windowed_median.cpp )
2020-04-26 17:51:54 +08:00
2019-12-07 15:29:25 +08:00
## Range Queries
2020-06-22 03:41:08 +08:00
* [Fenwick Tree ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/range_queries/fenwick_tree.cpp )
2020-08-20 03:40:46 +08:00
* [Heavy Light Decomposition ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/range_queries/heavy_light_decomposition.cpp )
2020-06-20 00:04:56 +08:00
* [Mo ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/range_queries/mo.cpp )
2021-02-09 01:19:26 +08:00
* [Persistent Seg Tree Lazy Prop ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/range_queries/persistent_seg_tree_lazy_prop.cpp )
2021-10-16 00:17:10 +08:00
* [Prefix Sum Array ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/range_queries/prefix_sum_array.cpp )
2020-06-20 00:04:56 +08:00
* [Segtree ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/range_queries/segtree.cpp )
2020-10-17 00:38:00 +08:00
* [Sparse Table ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/range_queries/sparse_table.cpp )
2019-12-07 15:29:25 +08:00
## Search
2020-04-26 17:28:13 +08:00
* [Binary Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/binary_search.cpp )
2019-12-07 15:29:25 +08:00
* [Exponential Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/exponential_search.cpp )
2020-07-11 05:38:04 +08:00
* [Fibonacci Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/fibonacci_search.cpp )
2021-07-23 00:40:10 +08:00
* [Floyd Cycle Detection Algo ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/floyd_cycle_detection_algo.cpp )
2019-12-18 00:19:12 +08:00
* [Hash Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/hash_search.cpp )
2020-01-10 06:53:01 +08:00
* [Interpolation Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/interpolation_search.cpp )
2020-06-20 00:04:56 +08:00
* [Interpolation Search2 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/interpolation_search2.cpp )
2020-05-24 12:44:27 +08:00
* [Jump Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/jump_search.cpp )
2020-06-20 00:04:56 +08:00
* [Linear Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/linear_search.cpp )
2019-12-07 15:29:25 +08:00
* [Median Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/median_search.cpp )
2020-12-02 20:57:53 +08:00
* [Saddleback Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/saddleback_search.cpp )
2021-07-07 17:23:29 +08:00
* [Sublist Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/sublist_search.cpp )
2019-12-07 15:29:25 +08:00
* [Ternary Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/ternary_search.cpp )
2020-06-20 00:04:56 +08:00
* [Text Search ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/text_search.cpp )
2019-12-07 15:29:25 +08:00
## Sorting
2020-06-20 00:04:56 +08:00
* [Bead Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bead_sort.cpp )
2022-01-12 02:39:41 +08:00
* [Binary Insertion Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/binary_insertion_sort.cpp )
2020-06-20 00:04:56 +08:00
* [Bitonic Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bitonic_sort.cpp )
2020-07-18 06:27:40 +08:00
* [Bogo Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bogo_sort.cpp )
2020-06-20 00:04:56 +08:00
* [Bubble Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bubble_sort.cpp )
* [Bucket Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bucket_sort.cpp )
* [Cocktail Selection Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/cocktail_selection_sort.cpp )
* [Comb Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/comb_sort.cpp )
2020-12-16 10:33:04 +08:00
* [Count Inversions ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/count_inversions.cpp )
2020-06-20 00:04:56 +08:00
* [Counting Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/counting_sort.cpp )
* [Counting Sort String ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/counting_sort_string.cpp )
2020-10-21 23:07:53 +08:00
* [Cycle Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/cycle_sort.cpp )
2021-08-19 20:25:13 +08:00
* [Dnf Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/dnf_sort.cpp )
2020-07-19 05:16:45 +08:00
* [Gnome Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/gnome_sort.cpp )
2019-12-22 22:17:51 +08:00
* [Heap Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/heap_sort.cpp )
2020-06-20 00:04:56 +08:00
* [Insertion Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/insertion_sort.cpp )
2020-03-07 15:20:22 +08:00
* [Library Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/library_sort.cpp )
2020-09-03 20:51:30 +08:00
* [Merge Insertion Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/merge_insertion_sort.cpp )
2020-06-20 00:04:56 +08:00
* [Merge Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/merge_sort.cpp )
Add file for non-recursive merge sort (#730)
* Add file for non-recursive merge sort
Add the source file (sorting/non_recursive_merge_sort.cpp) which defines the function template "non_recursive_merge_sort" in different forms, along with a helper function merge. Moreover, it creates 2 additional files, doxy.txt for Doxygen configuration, and a makefile to automate building, testing and cleaning.
* Add file for non-recursive merge sort
Add the source file (sorting/non_recursive_merge_sort.cpp) which defines the function template "non_recursive_merge_sort" in different forms, along with a helper function merge. Moreover, it creates 2 additional files, doxy.txt for Doxygen configuration, and a makefile to automate building, testing and cleaning.
* GitHub Action to cd sorting ; make doc ; make doc
* updating DIRECTORY.md
* Fix indentation error
* uses: mattnotmitt/doxygen-action@master
* doxyfile-path: 'sorting/'
* doxyfile-path: 'sorting/doxy.txt'
* working-directory: '.'
* Update sorting_non_recursive_merge_sort.yml
* Update sorting_non_recursive_merge_sort.yml
* Update sorting_non_recursive_merge_sort.yml
* Publish HTML to GitHub Pages
* Update sorting_non_recursive_merge_sort.yml
Co-authored-by: Christian Clauss <cclauss@me.com>
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2020-04-25 23:16:42 +08:00
* [Non Recursive Merge Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/non_recursive_merge_sort.cpp )
2020-06-20 00:04:56 +08:00
* [Numeric String Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/numeric_string_sort.cpp )
* [Odd Even Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/odd_even_sort.cpp )
2020-10-17 04:06:21 +08:00
* [Pancake Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/pancake_sort.cpp )
2020-08-26 07:58:06 +08:00
* [Pigeonhole Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/pigeonhole_sort.cpp )
2020-05-27 20:14:45 +08:00
* [Quick Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/quick_sort.cpp )
2020-07-21 09:12:31 +08:00
* [Quick Sort 3 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/quick_sort_3.cpp )
2020-06-20 00:04:56 +08:00
* [Radix Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/radix_sort.cpp )
2020-11-03 04:40:53 +08:00
* [Radix Sort2 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/radix_sort2.cpp )
2021-07-07 01:19:27 +08:00
* [Random Pivot Quick Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/random_pivot_quick_sort.cpp )
2021-05-15 13:43:39 +08:00
* [Recursive Bubble Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/recursive_bubble_sort.cpp )
2021-10-26 02:17:33 +08:00
* [Selection Sort Iterative ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/selection_sort_iterative.cpp )
2021-09-06 01:50:51 +08:00
* [Selection Sort Recursive ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/selection_sort_recursive.cpp )
2020-06-20 00:04:56 +08:00
* [Shell Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/shell_sort.cpp )
* [Shell Sort2 ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/shell_sort2.cpp )
* [Slow Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/slow_sort.cpp )
2020-10-01 01:21:25 +08:00
* [Strand Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/strand_sort.cpp )
2020-05-20 02:57:16 +08:00
* [Swap Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/swap_sort.cpp )
2020-06-20 00:04:56 +08:00
* [Tim Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/tim_sort.cpp )
2021-07-17 02:41:54 +08:00
* [Wave Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/wave_sort.cpp )
2020-10-29 01:21:49 +08:00
* [Wiggle Sort ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/wiggle_sort.cpp )
2019-12-07 15:29:25 +08:00
## Strings
2020-04-16 18:33:07 +08:00
* [Brute Force String Searching ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/strings/brute_force_string_searching.cpp )
2020-09-04 08:14:24 +08:00
* [Horspool ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/strings/horspool.cpp )
2019-12-07 15:29:25 +08:00
* [Knuth Morris Pratt ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/strings/knuth_morris_pratt.cpp )
2021-09-02 00:20:01 +08:00
* [Manacher Algorithm ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/strings/manacher_algorithm.cpp )
* [Rabin Karp ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/strings/rabin_karp.cpp )
2021-09-04 15:09:19 +08:00
* [Z Function ](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/strings/z_function.cpp )