TheAlgorithms-C/DIRECTORY.md

350 lines
29 KiB
Markdown
Raw Normal View History

2020-05-30 21:26:38 +03:00
# List of all files
2020-01-09 11:29:42 +03:00
2020-01-09 12:28:45 +03:00
## Client Server
2020-05-30 21:26:38 +03:00
* [Client](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/client_server/client.c)
* [Server](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/client_server/server.c)
* [Udp Client](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/client_server/udp_client.c)
* [Udp Server](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/client_server/udp_server.c)
2020-01-09 12:28:45 +03:00
2020-01-09 11:29:42 +03:00
## Conversions
2020-05-30 21:26:38 +03:00
* [Binary To Decimal](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/conversions/binary_to_decimal.c)
* [Binary To Hexadecimal](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/conversions/binary_to_hexadecimal.c)
* [Binary To Octal](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/conversions/binary_to_octal.c)
* [Decimal To Binary](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/conversions/decimal_to_binary.c)
* [Decimal To Hexa](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/conversions/decimal_to_hexa.c)
* [Decimal To Octal](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/conversions/decimal_to_octal.c)
* [Decimal To Octal Recursion](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/conversions/decimal_to_octal_recursion.c)
* [Hexadecimal To Octal](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/conversions/hexadecimal_to_octal.c)
* [Octal To Decimal](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/conversions/octal_to_decimal.c)
* [To Decimal](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/conversions/to_decimal.c)
2020-01-09 11:29:42 +03:00
## Data Structures
* Array
2020-05-30 21:26:38 +03:00
* [Carray](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/array/carray.c)
* [Carray](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/array/carray.h)
* [Carray Tests](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/array/carray_tests.c)
2020-01-09 11:29:42 +03:00
* Binary Trees
2020-05-30 21:26:38 +03:00
* [Avl](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binary_trees/avl.c)
* [Binary Search Tree](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binary_trees/binary_search_tree.c)
* [Create Node](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binary_trees/create_node.c)
* [Recursive Traversals](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binary_trees/recursive_traversals.c)
* [Redblacktree](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/binary_trees/redblacktree.c)
2020-01-09 11:29:42 +03:00
* Dictionary
2020-05-30 21:26:38 +03:00
* [Dict](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/dictionary/dict.c)
* [Dict](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/dictionary/dict.h)
* [Test Program](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/dictionary/test_program.c)
2020-04-17 16:25:08 +03:00
* Dynamic Array
2020-05-30 21:26:38 +03:00
* [Dynamic Array](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/dynamic_array/dynamic_array.c)
* [Dynamic Array](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/dynamic_array/dynamic_array.h)
* [Main](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/dynamic_array/main.c)
2020-01-09 11:29:42 +03:00
* Graphs
2020-05-30 21:26:38 +03:00
* [Bellman Ford](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/bellman_ford.c)
* [Bfs](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/bfs.c)
* [Bfsqueue](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/bfsqueue.c)
* [Dfs](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/dfs.c)
* [Dfsrecursive](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/dfsrecursive.c)
* [Dijkstra](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/dijkstra.c)
* [Euler](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/euler.c)
* [Floyd Warshall](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/floyd_warshall.c)
* [Graph](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/graph.c)
* [Graph](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/graph.h)
* [Hamiltonian](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/hamiltonian.c)
* [Kruskal](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/kruskal.c)
* [Queue](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/queue.c)
* [Queue](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/queue.h)
* [Strongly Connected Components](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/strongly_connected_components.c)
* [Topologicalsort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/topologicalsort.c)
* [Transitiveclosure](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/graphs/transitiveclosure.c)
2020-05-23 04:06:32 +03:00
* Hash Set
2020-05-30 21:26:38 +03:00
* [Hash Set](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/hash_set/hash_set.c)
* [Hash Set](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/hash_set/hash_set.h)
* [Main](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/hash_set/main.c)
2020-01-09 11:29:42 +03:00
* Heap
2020-05-30 21:26:38 +03:00
* [Max Heap](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/heap/max_heap.c)
* [Min Heap](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/heap/min_heap.c)
2020-01-09 11:29:42 +03:00
* Linked List
2020-05-30 21:26:38 +03:00
* [Ascendingpriorityqueue](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/linked_list/ascendingpriorityqueue.c)
* [Circularlinkedlist](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/linked_list/CircularLinkedList.C)
* [Merge Linked Lists](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/linked_list/merge_linked_lists.c)
* [Middle Element In List](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/linked_list/middle_element_in_list.c)
* [Queue Linked List](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/linked_list/queue_linked_list.c)
* [Singly Link List Deletion](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/linked_list/singly_link_list_deletion.c)
* [Stack Using Linked Lists](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/linked_list/stack_using_linked_lists.c)
2020-01-09 11:29:42 +03:00
* List
2020-05-30 21:26:38 +03:00
* [List](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/list/list.c)
* [List](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/list/list.h)
* [Main](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/list/main.c)
* [Queue](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/queue.c)
* [Stack](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack.c)
2020-01-09 11:29:42 +03:00
* Stack
2020-05-30 21:26:38 +03:00
* [Main](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack/main.c)
* [Parenthesis](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack/parenthesis.c)
* [Stack](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack/stack.c)
* [Stack](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack/stack.h)
2020-01-09 12:28:45 +03:00
* Stack Linked List
2020-05-30 21:26:38 +03:00
* [Main](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack/stack_linked_list/main.c)
* [Stack](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack/stack_linked_list/stack.c)
* [Stack](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack/stack_linked_list/stack.h)
2020-01-09 11:29:42 +03:00
* Trie
2020-05-30 21:26:38 +03:00
* [Trie](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/trie/trie.c)
2020-01-09 11:29:42 +03:00
## Exercism
* Acronym
2020-05-30 21:26:38 +03:00
* [Acronym](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/exercism/acronym/acronym.c)
* [Acronym](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/exercism/acronym/acronym.h)
2020-01-09 12:28:45 +03:00
* Hello World
2020-05-30 21:26:38 +03:00
* [Hello World](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/exercism/hello_world/hello_world.c)
* [Hello World](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/exercism/hello_world/hello_world.h)
2020-01-09 11:29:42 +03:00
* Isogram
2020-05-30 21:26:38 +03:00
* [Isogram](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/exercism/isogram/isogram.c)
* [Isogram](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/exercism/isogram/isogram.h)
2020-01-09 12:28:45 +03:00
* Rna Transcription
2020-05-30 21:26:38 +03:00
* [Rna Transcription](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/exercism/rna_transcription/rna_transcription.c)
* [Rna Transcription](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/exercism/rna_transcription/rna_transcription.h)
2020-01-09 12:28:45 +03:00
* Word Count
2020-05-30 21:26:38 +03:00
* [Word Count](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/exercism/word_count/word_count.c)
* [Word Count](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/exercism/word_count/word_count.h)
2020-01-09 11:29:42 +03:00
2020-05-23 04:06:32 +03:00
## Greedy Approach
2020-05-30 21:26:38 +03:00
* [Djikstra](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/greedy_approach/djikstra.c)
2020-05-23 04:06:32 +03:00
2020-01-09 11:29:42 +03:00
## Hash
2020-05-30 21:26:38 +03:00
* [Hash](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/hash/hash.c)
* [Hash](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/hash/hash.h)
* [Test Program](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/hash/test_program.c)
2020-01-09 11:29:42 +03:00
## Leetcode
* Src
2020-05-30 21:26:38 +03:00
* [1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/1.c)
* [101](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/101.c)
* [104](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/104.c)
* [108](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/108.c)
* [1089](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/1089.c)
* [109](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/109.c)
* [11](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/11.c)
* [110](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/110.c)
* [112](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/112.c)
* [1184](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/1184.c)
* [1189](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/1189.c)
* [12](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/12.c)
* [1207](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/1207.c)
* [121](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/121.c)
* [125](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/125.c)
* [13](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/13.c)
* [136](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/136.c)
* [141](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/141.c)
* [142](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/142.c)
* [153](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/153.c)
* [160](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/160.c)
* [169](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/169.c)
* [173](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/173.c)
* [189](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/189.c)
* [190](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/190.c)
* [191](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/191.c)
* [2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/2.c)
* [20](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/20.c)
* [201](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/201.c)
* [203](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/203.c)
* [206](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/206.c)
* [21](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/21.c)
* [215](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/215.c)
* [217](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/217.c)
* [226](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/226.c)
* [231](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/231.c)
* [234](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/234.c)
* [24](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/24.c)
* [242](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/242.c)
* [26](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/26.c)
* [268](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/268.c)
* [27](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/27.c)
* [278](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/278.c)
* [28](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/28.c)
* [283](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/283.c)
* [287](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/287.c)
* [29](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/29.c)
* [3](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/3.c)
* [344](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/344.c)
* [35](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/35.c)
* [367](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/367.c)
* [38](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/38.c)
* [387](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/387.c)
* [389](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/389.c)
* [4](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/4.c)
* [404](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/404.c)
* [442](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/442.c)
* [461](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/461.c)
* [476](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/476.c)
* [509](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/509.c)
* [520](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/520.c)
* [53](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/53.c)
* [561](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/561.c)
* [617](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/617.c)
* [647](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/647.c)
* [66](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/66.c)
* [674](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/674.c)
* [7](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/7.c)
* [700](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/700.c)
* [701](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/701.c)
* [704](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/704.c)
* [709](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/709.c)
* [771](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/771.c)
* [8](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/8.c)
* [82](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/82.c)
* [83](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/83.c)
* [852](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/852.c)
* [876](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/876.c)
* [9](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/9.c)
* [905](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/905.c)
* [917](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/917.c)
* [938](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/938.c)
* [94](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/94.c)
* [965](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/965.c)
* [977](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/leetcode/src/977.c)
2020-01-09 11:29:42 +03:00
## Misc
2020-05-30 21:26:38 +03:00
* [Armstrong Number](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/armstrong_number.c)
* [Cantor Set](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/cantor_set.c)
* [Cartesian To Polar](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/cartesian_to_polar.c)
* [Catalan](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/catalan.c)
* [Collatz](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/collatz.c)
* [Demonetization](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/demonetization.c)
* [Factorial](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/factorial.c)
* [Factorial Large Number](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/factorial_large_number.c)
* [Factorial Trailing Zeroes](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/factorial_trailing_zeroes.c)
* [Fibonacci](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/fibonacci.c)
* [Fibonacci Dp](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/fibonacci_dp.c)
* [Fibonacci Fast](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/fibonacci_fast.c)
* [Gcd](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/gcd.c)
* [Is Armstrong](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/is_armstrong.c)
* [Large Factorials](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/large_factorials.c)
* [Lcm](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/lcm.c)
* [Lerp](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/lerp.c)
* [Lexicographic Permutations](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/lexicographic_permutations.c)
* [Longest Subsequence](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/longest_subsequence.c)
* [Mirror](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/mirror.c)
* [Palindrome](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/palindrome.c)
* [Pid](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/pid.c)
* [Prime](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/prime.c)
* [Prime Factoriziation](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/prime_factoriziation.c)
* [Quartile](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/quartile.c)
* [Rselect](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/rselect.c)
* [Strong Number](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/strong_number.c)
* [Sudoku Solver](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/sudoku_solver.c)
* [Tower Of Hanoi](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/tower_of_hanoi.c)
* [Union Find](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/misc/union_find.c)
2020-01-09 11:29:42 +03:00
2020-04-08 22:31:36 +03:00
## Numerical Methods
2020-05-30 21:26:38 +03:00
* [Durand Kerner Roots](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/durand_kerner_roots.c)
* [Gauss Elimination](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/gauss_elimination.c)
* [Gauss Seidel Method](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/gauss_seidel_method.c)
* [Lagrange Theorem](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/lagrange_theorem.c)
* [Mean](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/mean.c)
* [Median](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/median.c)
* [Newton Raphson Root](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/newton_raphson_root.c)
* [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.c)
* [Qr Eigen Values](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/qr_eigen_values.c)
* [Realtime Stats](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/realtime_stats.c)
* [Simpsons 1 3Rd Rule](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/simpsons_1_3rd_rule.c)
* [Variance](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/variance.c)
2020-04-08 22:31:36 +03:00
2020-01-09 11:29:42 +03:00
## Project Euler
2020-05-29 23:14:13 +03:00
* Problem 1
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_1/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_1/sol2.c)
* [Sol3](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_1/sol3.c)
* [Sol4](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_1/sol4.c)
2020-03-30 06:23:46 +03:00
* Problem 10
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_10/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_10/sol2.c)
2020-03-30 07:37:29 +03:00
* Problem 12
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_12/sol1.c)
2020-03-30 22:49:42 +03:00
* Problem 13
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_13/sol1.c)
2020-03-30 22:49:42 +03:00
* Problem 14
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_14/sol1.c)
2020-03-30 22:49:42 +03:00
* Problem 15
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_15/sol1.c)
2020-03-30 22:49:42 +03:00
* Problem 16
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_16/sol1.c)
2020-04-01 19:11:46 +03:00
* Problem 19
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_19/sol1.c)
2020-05-29 23:14:13 +03:00
* Problem 2
2020-05-30 21:26:38 +03:00
* [So1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_2/so1.c)
2020-04-03 03:16:37 +03:00
* Problem 20
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_20/sol1.c)
2020-04-02 04:10:10 +03:00
* Problem 21
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_21/sol1.c)
* Problem 22
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_22/sol1.c)
2020-04-02 20:27:59 +03:00
* Problem 23
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_23/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_23/sol2.c)
2020-04-03 03:16:37 +03:00
* Problem 25
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_25/sol1.c)
2020-04-03 06:51:13 +03:00
* Problem 26
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_26/sol1.c)
2020-05-29 23:14:13 +03:00
* Problem 3
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_3/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_3/sol2.c)
2020-05-29 23:14:13 +03:00
* Problem 4
2020-05-30 21:26:38 +03:00
* [Sol](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_4/sol.c)
2020-04-24 00:00:06 +03:00
* Problem 401
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_401/sol1.c)
2020-05-29 23:14:13 +03:00
* Problem 5
2020-05-30 21:26:38 +03:00
* [Sol](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_5/sol.c)
2020-05-29 23:14:13 +03:00
* Problem 6
2020-05-30 21:26:38 +03:00
* [Sol](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_6/sol.c)
2020-05-29 23:14:13 +03:00
* Problem 7
2020-05-30 21:26:38 +03:00
* [Sol](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_7/sol.c)
2020-05-29 23:14:13 +03:00
* Problem 8
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_8/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_8/sol2.c)
2020-05-29 23:14:13 +03:00
* Problem 9
2020-05-30 21:26:38 +03:00
* [Sol1](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_9/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/project_euler/problem_9/sol2.c)
2020-01-09 11:29:42 +03:00
## Searching
2020-05-30 21:26:38 +03:00
* [Binary Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/binary_search.c)
* [Fibonacci Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/fibonacci_search.c)
* [Interpolation Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/interpolation_search.c)
* [Jump Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/jump_search.c)
* [Linear Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/linear_search.c)
* [Modified Binary Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/modified_binary_search.c)
* [Other Binary Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/other_binary_search.c)
2020-01-09 11:29:42 +03:00
* Pattern Search
2020-05-30 21:26:38 +03:00
* [Boyer Moore Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/pattern_search/boyer_moore_search.c)
* [Naive Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/pattern_search/naive_search.c)
* [Rabin Karp Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/pattern_search/rabin_karp_search.c)
* [Ternary Search](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/searching/ternary_search.c)
2020-01-09 11:29:42 +03:00
## Sorting
2020-05-30 21:26:38 +03:00
* [Bead Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bead_sort.c)
* [Binary Insertion Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/binary_insertion_sort.c)
* [Bogo Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bogo_sort.c)
* [Bubble Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bubble_sort.c)
* [Bubble Sort 2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bubble_sort_2.c)
* [Bucket Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bucket_sort.c)
* [Cocktail Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/cocktail_sort.c)
* [Comb Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/comb_sort.c)
* [Counting Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/counting_sort.c)
* [Cycle Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/cycle_sort.c)
* [Gnome Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/gnome_sort.c)
* [Heap Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/heap_sort.c)
* [Insertion Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/insertion_sort.c)
* [Merge Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/merge_sort.c)
* [Merge Sort Nr](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/merge_sort_nr.c)
* [Multikey Quick Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/multikey_quick_sort.c)
* [Pancake Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/pancake_sort.c)
* [Partition Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/partition_sort.c)
* [Pigeonhole Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/pigeonhole_sort.c)
* [Quick Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/quick_sort.c)
* [Radix Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/radix_sort.c)
* [Radix Sort 2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/radix_sort_2.c)
* [Random Quick Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/random_quick_sort.c)
* [Selection Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/selection_sort.c)
* [Shaker Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/shaker_sort.c)
* [Shell Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/shell_sort.c)
* [Shell Sort2](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/shell_sort2.c)
* [Stooge Sort](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/stooge_sort.c)