Merge branch 'master' of github.com:kvedala/C

* 'master' of github.com:kvedala/C:
  updating DIRECTORY.md
  change base_url of the workflows to "kvedala/C"

# Conflicts:
#	DIRECTORY.md
This commit is contained in:
Krishna Vedala 2020-04-23 16:59:40 -04:00
commit 83dddc940f
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7
2 changed files with 257 additions and 244 deletions

View File

@ -13,7 +13,7 @@ jobs:
import os import os
from typing import Iterator from typing import Iterator
URL_BASE = "https://github.com/TheAlgorithms/C/blob/master" URL_BASE = "https://github.com/kvedala/C/blob/master"
g_output = [] g_output = []

View File

@ -1,298 +1,311 @@
## Client Server ## Client Server
* [Client](https://github.com/TheAlgorithms/C/blob/master/client_server/client.c) * [Client](https://github.com/kvedala/C/blob/master/client_server/client.c)
* [Server](https://github.com/TheAlgorithms/C/blob/master/client_server/server.c) * [Server](https://github.com/kvedala/C/blob/master/client_server/server.c)
* [Udp Client](https://github.com/TheAlgorithms/C/blob/master/client_server/UDP_Client.c) * [Udp Client](https://github.com/kvedala/C/blob/master/client_server/UDP_Client.c)
* [Udp Server](https://github.com/TheAlgorithms/C/blob/master/client_server/UDP_Server.c) * [Udp Server](https://github.com/kvedala/C/blob/master/client_server/UDP_Server.c)
## Conversions ## Conversions
* [Binary To Decimal](https://github.com/TheAlgorithms/C/blob/master/conversions/binary_to_decimal.c) * [Binary To Decimal](https://github.com/kvedala/C/blob/master/conversions/binary_to_decimal.c)
* [Binary To Hexadecimal](https://github.com/TheAlgorithms/C/blob/master/conversions/binary_to_hexadecimal.c) * [Binary To Hexadecimal](https://github.com/kvedala/C/blob/master/conversions/binary_to_hexadecimal.c)
* [Binary To Octal](https://github.com/TheAlgorithms/C/blob/master/conversions/binary_to_octal.c) * [Binary To Octal](https://github.com/kvedala/C/blob/master/conversions/binary_to_octal.c)
* [Decimal To Binary](https://github.com/TheAlgorithms/C/blob/master/conversions/decimal_to_binary.c) * [Decimal To Binary](https://github.com/kvedala/C/blob/master/conversions/decimal_to_binary.c)
* [Decimal To Hexa](https://github.com/TheAlgorithms/C/blob/master/conversions/decimal_to_hexa.c) * [Decimal To Hexa](https://github.com/kvedala/C/blob/master/conversions/decimal_to_hexa.c)
* [Decimal To Octal](https://github.com/TheAlgorithms/C/blob/master/conversions/decimal_to_octal.c) * [Decimal To Octal](https://github.com/kvedala/C/blob/master/conversions/decimal_to_octal.c)
* [Decimal To Octal Recursion](https://github.com/TheAlgorithms/C/blob/master/conversions/decimal_to_octal_recursion.c) * [Decimal To Octal Recursion](https://github.com/kvedala/C/blob/master/conversions/decimal_to_octal_recursion.c)
* [Hexadecimal To Octal](https://github.com/TheAlgorithms/C/blob/master/conversions/hexadecimal_to_octal.c) * [Hexadecimal To Octal](https://github.com/kvedala/C/blob/master/conversions/hexadecimal_to_octal.c)
* [To Decimal](https://github.com/TheAlgorithms/C/blob/master/conversions/to_decimal.c) * [To Decimal](https://github.com/kvedala/C/blob/master/conversions/to_decimal.c)
## Data Structures ## Data Structures
* Array * Array
* [Carray](https://github.com/TheAlgorithms/C/blob/master/data_structures/Array/CArray.c) * [Carray](https://github.com/kvedala/C/blob/master/data_structures/Array/CArray.c)
* [Carraytests](https://github.com/TheAlgorithms/C/blob/master/data_structures/Array/CArrayTests.c) * [Carraytests](https://github.com/kvedala/C/blob/master/data_structures/Array/CArrayTests.c)
* Binary Trees * Binary Trees
* [Avl](https://github.com/TheAlgorithms/C/blob/master/data_structures/binary_trees/avl.c) * [Avl](https://github.com/kvedala/C/blob/master/data_structures/binary_trees/avl.c)
* [Binary Search Tree](https://github.com/TheAlgorithms/C/blob/master/data_structures/binary_trees/binary_search_tree.c) * [Binary Search Tree](https://github.com/kvedala/C/blob/master/data_structures/binary_trees/binary_search_tree.c)
* [Create Node](https://github.com/TheAlgorithms/C/blob/master/data_structures/binary_trees/create_node.c) * [Create Node](https://github.com/kvedala/C/blob/master/data_structures/binary_trees/create_node.c)
* [Recursive Traversals](https://github.com/TheAlgorithms/C/blob/master/data_structures/binary_trees/recursive_traversals.c) * [Recursive Traversals](https://github.com/kvedala/C/blob/master/data_structures/binary_trees/recursive_traversals.c)
* [Redblacktree](https://github.com/TheAlgorithms/C/blob/master/data_structures/binary_trees/redBlackTree.c) * [Redblacktree](https://github.com/kvedala/C/blob/master/data_structures/binary_trees/redBlackTree.c)
* Dictionary * Dictionary
* [Dict](https://github.com/TheAlgorithms/C/blob/master/data_structures/dictionary/dict.c) * [Dict](https://github.com/kvedala/C/blob/master/data_structures/dictionary/dict.c)
* [Test Program](https://github.com/TheAlgorithms/C/blob/master/data_structures/dictionary/test_program.c) * [Test Program](https://github.com/kvedala/C/blob/master/data_structures/dictionary/test_program.c)
* Dynamic Array * Dynamic Array
* [Dynamic Array](https://github.com/TheAlgorithms/C/blob/master/data_structures/dynamic_array/dynamic_array.c) * [Dynamic Array](https://github.com/kvedala/C/blob/master/data_structures/dynamic_array/dynamic_array.c)
* [Main](https://github.com/TheAlgorithms/C/blob/master/data_structures/dynamic_array/main.c) * [Main](https://github.com/kvedala/C/blob/master/data_structures/dynamic_array/main.c)
* Graphs * Graphs
* [Bellman-Ford](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/Bellman-Ford.c) * [Bellman-Ford](https://github.com/kvedala/C/blob/master/data_structures/graphs/Bellman-Ford.c)
* [Bfs](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/BFS.c) * [Bfs](https://github.com/kvedala/C/blob/master/data_structures/graphs/BFS.c)
* [Dfs](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/DFS.c) * [Dfs](https://github.com/kvedala/C/blob/master/data_structures/graphs/DFS.c)
* [Dijkstra](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/Dijkstra.c) * [Dijkstra](https://github.com/kvedala/C/blob/master/data_structures/graphs/Dijkstra.c)
* [Floyd-Warshall](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/Floyd-Warshall.c) * [Floyd-Warshall](https://github.com/kvedala/C/blob/master/data_structures/graphs/Floyd-Warshall.c)
* [Kruskal](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/kruskal.c) * [Kruskal](https://github.com/kvedala/C/blob/master/data_structures/graphs/kruskal.c)
* [Strongly Connected Components](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/strongly_connected_components.c) * [Strongly Connected Components](https://github.com/kvedala/C/blob/master/data_structures/graphs/strongly_connected_components.c)
* [Topologicalsort](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/topologicalSort.c) * [Topologicalsort](https://github.com/kvedala/C/blob/master/data_structures/graphs/topologicalSort.c)
* Heap * Heap
* [Max Heap](https://github.com/TheAlgorithms/C/blob/master/data_structures/heap/max_heap.c) * [Max Heap](https://github.com/kvedala/C/blob/master/data_structures/heap/max_heap.c)
* [Min Heap](https://github.com/TheAlgorithms/C/blob/master/data_structures/heap/min_heap.c) * [Min Heap](https://github.com/kvedala/C/blob/master/data_structures/heap/min_heap.c)
* Linked List * Linked List
* [Merge Linked Lists](https://github.com/TheAlgorithms/C/blob/master/data_structures/linked_list/merge_linked_lists.c) * [Merge Linked Lists](https://github.com/kvedala/C/blob/master/data_structures/linked_list/merge_linked_lists.c)
* [Middle Element In List](https://github.com/TheAlgorithms/C/blob/master/data_structures/linked_list/middle_element_in_list.c) * [Middle Element In List](https://github.com/kvedala/C/blob/master/data_structures/linked_list/middle_element_in_list.c)
* [Singly Link List Deletion](https://github.com/TheAlgorithms/C/blob/master/data_structures/linked_list/singly_link_list_deletion.c) * [Singly Link List Deletion](https://github.com/kvedala/C/blob/master/data_structures/linked_list/singly_link_list_deletion.c)
* [Stack Using Linked Lists](https://github.com/TheAlgorithms/C/blob/master/data_structures/linked_list/stack_using_linked_lists.c) * [Stack Using Linked Lists](https://github.com/kvedala/C/blob/master/data_structures/linked_list/stack_using_linked_lists.c)
* List * List
* [List](https://github.com/TheAlgorithms/C/blob/master/data_structures/list/list.c) * [List](https://github.com/kvedala/C/blob/master/data_structures/list/list.c)
* [Main](https://github.com/TheAlgorithms/C/blob/master/data_structures/list/main.c) * [Main](https://github.com/kvedala/C/blob/master/data_structures/list/main.c)
* [Queue](https://github.com/TheAlgorithms/C/blob/master/data_structures/queue.c) * [Queue](https://github.com/kvedala/C/blob/master/data_structures/queue.c)
* [Stack](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack.c) * [Stack](https://github.com/kvedala/C/blob/master/data_structures/stack.c)
* Stack * Stack
* [Main](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack/main.c) * [Main](https://github.com/kvedala/C/blob/master/data_structures/stack/main.c)
* [Parenthesis](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack/parenthesis.c) * [Parenthesis](https://github.com/kvedala/C/blob/master/data_structures/stack/parenthesis.c)
* [Stack](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack/stack.c) * [Stack](https://github.com/kvedala/C/blob/master/data_structures/stack/stack.c)
* Stack Linked List * Stack Linked List
* [Main](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack/stack_linked_list/main.c) * [Main](https://github.com/kvedala/C/blob/master/data_structures/stack/stack_linked_list/main.c)
* [Stack](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack/stack_linked_list/stack.c) * [Stack](https://github.com/kvedala/C/blob/master/data_structures/stack/stack_linked_list/stack.c)
* Trie * Trie
* [Trie](https://github.com/TheAlgorithms/C/blob/master/data_structures/trie/trie.c) * [Trie](https://github.com/kvedala/C/blob/master/data_structures/trie/trie.c)
## Exercism ## Exercism
* Acronym * Acronym
* [Acronym](https://github.com/TheAlgorithms/C/blob/master/exercism/acronym/acronym.c) * [Acronym](https://github.com/kvedala/C/blob/master/exercism/acronym/acronym.c)
* Hello World * Hello World
* [Hello World](https://github.com/TheAlgorithms/C/blob/master/exercism/hello_world/hello_world.c) * [Hello World](https://github.com/kvedala/C/blob/master/exercism/hello_world/hello_world.c)
* Isogram * Isogram
* [Isogram](https://github.com/TheAlgorithms/C/blob/master/exercism/isogram/isogram.c) * [Isogram](https://github.com/kvedala/C/blob/master/exercism/isogram/isogram.c)
* Rna Transcription * Rna Transcription
* [Rna Transcription](https://github.com/TheAlgorithms/C/blob/master/exercism/rna_transcription/rna_transcription.c) * [Rna Transcription](https://github.com/kvedala/C/blob/master/exercism/rna_transcription/rna_transcription.c)
* Word Count * Word Count
* [Word Count](https://github.com/TheAlgorithms/C/blob/master/exercism/word_count/word_count.c) * [Word Count](https://github.com/kvedala/C/blob/master/exercism/word_count/word_count.c)
## Hash ## Hash
* [Hash](https://github.com/TheAlgorithms/C/blob/master/hash/hash.c) * [Hash](https://github.com/kvedala/C/blob/master/hash/hash.c)
* [Test Program](https://github.com/TheAlgorithms/C/blob/master/hash/test_program.c) * [Test Program](https://github.com/kvedala/C/blob/master/hash/test_program.c)
## Leetcode ## Leetcode
* Src * Src
* [1](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/1.c) * [1](https://github.com/kvedala/C/blob/master/leetcode/src/1.c)
* [101](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/101.c) * [101](https://github.com/kvedala/C/blob/master/leetcode/src/101.c)
* [104](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/104.c) * [104](https://github.com/kvedala/C/blob/master/leetcode/src/104.c)
* [108](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/108.c) * [108](https://github.com/kvedala/C/blob/master/leetcode/src/108.c)
* [1089](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/1089.c) * [1089](https://github.com/kvedala/C/blob/master/leetcode/src/1089.c)
* [109](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/109.c) * [109](https://github.com/kvedala/C/blob/master/leetcode/src/109.c)
* [11](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/11.c) * [11](https://github.com/kvedala/C/blob/master/leetcode/src/11.c)
* [110](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/110.c) * [110](https://github.com/kvedala/C/blob/master/leetcode/src/110.c)
* [112](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/112.c) * [112](https://github.com/kvedala/C/blob/master/leetcode/src/112.c)
* [1184](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/1184.c) * [1184](https://github.com/kvedala/C/blob/master/leetcode/src/1184.c)
* [1189](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/1189.c) * [1189](https://github.com/kvedala/C/blob/master/leetcode/src/1189.c)
* [12](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/12.c) * [12](https://github.com/kvedala/C/blob/master/leetcode/src/12.c)
* [1207](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/1207.c) * [1207](https://github.com/kvedala/C/blob/master/leetcode/src/1207.c)
* [121](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/121.c) * [121](https://github.com/kvedala/C/blob/master/leetcode/src/121.c)
* [125](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/125.c) * [125](https://github.com/kvedala/C/blob/master/leetcode/src/125.c)
* [13](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/13.c) * [13](https://github.com/kvedala/C/blob/master/leetcode/src/13.c)
* [136](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/136.c) * [136](https://github.com/kvedala/C/blob/master/leetcode/src/136.c)
* [141](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/141.c) * [141](https://github.com/kvedala/C/blob/master/leetcode/src/141.c)
* [142](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/142.c) * [142](https://github.com/kvedala/C/blob/master/leetcode/src/142.c)
* [153](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/153.c) * [153](https://github.com/kvedala/C/blob/master/leetcode/src/153.c)
* [160](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/160.c) * [160](https://github.com/kvedala/C/blob/master/leetcode/src/160.c)
* [169](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/169.c) * [169](https://github.com/kvedala/C/blob/master/leetcode/src/169.c)
* [173](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/173.c) * [173](https://github.com/kvedala/C/blob/master/leetcode/src/173.c)
* [189](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/189.c) * [189](https://github.com/kvedala/C/blob/master/leetcode/src/189.c)
* [190](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/190.c) * [190](https://github.com/kvedala/C/blob/master/leetcode/src/190.c)
* [191](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/191.c) * [191](https://github.com/kvedala/C/blob/master/leetcode/src/191.c)
* [2](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/2.c) * [2](https://github.com/kvedala/C/blob/master/leetcode/src/2.c)
* [20](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/20.c) * [20](https://github.com/kvedala/C/blob/master/leetcode/src/20.c)
* [201](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/201.c) * [201](https://github.com/kvedala/C/blob/master/leetcode/src/201.c)
* [203](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/203.c) * [203](https://github.com/kvedala/C/blob/master/leetcode/src/203.c)
* [206](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/206.c) * [206](https://github.com/kvedala/C/blob/master/leetcode/src/206.c)
* [21](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/21.c) * [21](https://github.com/kvedala/C/blob/master/leetcode/src/21.c)
* [215](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/215.c) * [215](https://github.com/kvedala/C/blob/master/leetcode/src/215.c)
* [217](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/217.c) * [217](https://github.com/kvedala/C/blob/master/leetcode/src/217.c)
* [226](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/226.c) * [226](https://github.com/kvedala/C/blob/master/leetcode/src/226.c)
* [231](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/231.c) * [231](https://github.com/kvedala/C/blob/master/leetcode/src/231.c)
* [234](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/234.c) * [234](https://github.com/kvedala/C/blob/master/leetcode/src/234.c)
* [24](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/24.c) * [24](https://github.com/kvedala/C/blob/master/leetcode/src/24.c)
* [242](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/242.c) * [242](https://github.com/kvedala/C/blob/master/leetcode/src/242.c)
* [26](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/26.c) * [26](https://github.com/kvedala/C/blob/master/leetcode/src/26.c)
* [268](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/268.c) * [268](https://github.com/kvedala/C/blob/master/leetcode/src/268.c)
* [27](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/27.c) * [27](https://github.com/kvedala/C/blob/master/leetcode/src/27.c)
* [278](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/278.c) * [278](https://github.com/kvedala/C/blob/master/leetcode/src/278.c)
* [28](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/28.c) * [28](https://github.com/kvedala/C/blob/master/leetcode/src/28.c)
* [283](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/283.c) * [283](https://github.com/kvedala/C/blob/master/leetcode/src/283.c)
* [287](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/287.c) * [287](https://github.com/kvedala/C/blob/master/leetcode/src/287.c)
* [29](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/29.c) * [29](https://github.com/kvedala/C/blob/master/leetcode/src/29.c)
* [3](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/3.c) * [3](https://github.com/kvedala/C/blob/master/leetcode/src/3.c)
* [344](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/344.c) * [344](https://github.com/kvedala/C/blob/master/leetcode/src/344.c)
* [35](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/35.c) * [35](https://github.com/kvedala/C/blob/master/leetcode/src/35.c)
* [367](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/367.c) * [367](https://github.com/kvedala/C/blob/master/leetcode/src/367.c)
* [38](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/38.c) * [38](https://github.com/kvedala/C/blob/master/leetcode/src/38.c)
* [387](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/387.c) * [387](https://github.com/kvedala/C/blob/master/leetcode/src/387.c)
* [389](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/389.c) * [389](https://github.com/kvedala/C/blob/master/leetcode/src/389.c)
* [4](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/4.c) * [4](https://github.com/kvedala/C/blob/master/leetcode/src/4.c)
* [404](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/404.c) * [404](https://github.com/kvedala/C/blob/master/leetcode/src/404.c)
* [442](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/442.c) * [442](https://github.com/kvedala/C/blob/master/leetcode/src/442.c)
* [461](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/461.c) * [461](https://github.com/kvedala/C/blob/master/leetcode/src/461.c)
* [476](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/476.c) * [476](https://github.com/kvedala/C/blob/master/leetcode/src/476.c)
* [509](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/509.c) * [509](https://github.com/kvedala/C/blob/master/leetcode/src/509.c)
* [520](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/520.c) * [520](https://github.com/kvedala/C/blob/master/leetcode/src/520.c)
* [53](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/53.c) * [53](https://github.com/kvedala/C/blob/master/leetcode/src/53.c)
* [561](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/561.c) * [561](https://github.com/kvedala/C/blob/master/leetcode/src/561.c)
* [617](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/617.c) * [617](https://github.com/kvedala/C/blob/master/leetcode/src/617.c)
* [647](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/647.c) * [647](https://github.com/kvedala/C/blob/master/leetcode/src/647.c)
* [66](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/66.c) * [66](https://github.com/kvedala/C/blob/master/leetcode/src/66.c)
* [674](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/674.c) * [674](https://github.com/kvedala/C/blob/master/leetcode/src/674.c)
* [7](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/7.c) * [7](https://github.com/kvedala/C/blob/master/leetcode/src/7.c)
* [700](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/700.c) * [700](https://github.com/kvedala/C/blob/master/leetcode/src/700.c)
* [701](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/701.c) * [701](https://github.com/kvedala/C/blob/master/leetcode/src/701.c)
* [704](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/704.c) * [704](https://github.com/kvedala/C/blob/master/leetcode/src/704.c)
* [709](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/709.c) * [709](https://github.com/kvedala/C/blob/master/leetcode/src/709.c)
* [771](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/771.c) * [771](https://github.com/kvedala/C/blob/master/leetcode/src/771.c)
* [8](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/8.c) * [8](https://github.com/kvedala/C/blob/master/leetcode/src/8.c)
* [82](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/82.c) * [82](https://github.com/kvedala/C/blob/master/leetcode/src/82.c)
* [83](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/83.c) * [83](https://github.com/kvedala/C/blob/master/leetcode/src/83.c)
* [852](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/852.c) * [852](https://github.com/kvedala/C/blob/master/leetcode/src/852.c)
* [876](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/876.c) * [876](https://github.com/kvedala/C/blob/master/leetcode/src/876.c)
* [9](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/9.c) * [9](https://github.com/kvedala/C/blob/master/leetcode/src/9.c)
* [905](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/905.c) * [905](https://github.com/kvedala/C/blob/master/leetcode/src/905.c)
* [917](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/917.c) * [917](https://github.com/kvedala/C/blob/master/leetcode/src/917.c)
* [938](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/938.c) * [938](https://github.com/kvedala/C/blob/master/leetcode/src/938.c)
* [94](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/94.c) * [94](https://github.com/kvedala/C/blob/master/leetcode/src/94.c)
* [965](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/965.c) * [965](https://github.com/kvedala/C/blob/master/leetcode/src/965.c)
* [977](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/977.c) * [977](https://github.com/kvedala/C/blob/master/leetcode/src/977.c)
## Misc ## Misc
* [Armstrong Number](https://github.com/TheAlgorithms/C/blob/master/misc/armstrong_number.c) * [Armstrong Number](https://github.com/kvedala/C/blob/master/misc/armstrong_number.c)
* [Cantor Set](https://github.com/TheAlgorithms/C/blob/master/misc/cantor_set.c) * [Cantor Set](https://github.com/kvedala/C/blob/master/misc/cantor_set.c)
* [Cartesian To Polar](https://github.com/TheAlgorithms/C/blob/master/misc/cartesian_To_Polar.c) * [Cartesian To Polar](https://github.com/kvedala/C/blob/master/misc/cartesian_To_Polar.c)
* [Catalan](https://github.com/TheAlgorithms/C/blob/master/misc/catalan.c) * [Catalan](https://github.com/kvedala/C/blob/master/misc/catalan.c)
* [Collatz](https://github.com/TheAlgorithms/C/blob/master/misc/Collatz.c) * [Collatz](https://github.com/kvedala/C/blob/master/misc/Collatz.c)
* [Demonetization](https://github.com/TheAlgorithms/C/blob/master/misc/demonetization.c) * [Demonetization](https://github.com/kvedala/C/blob/master/misc/demonetization.c)
* [Factorial](https://github.com/TheAlgorithms/C/blob/master/misc/Factorial.c) * [Factorial](https://github.com/kvedala/C/blob/master/misc/Factorial.c)
* [Factorial Fast](https://github.com/TheAlgorithms/C/blob/master/misc/factorial_fast.c) * [Factorial Fast](https://github.com/kvedala/C/blob/master/misc/factorial_fast.c)
* [Factorial Trailing Zeroes](https://github.com/TheAlgorithms/C/blob/master/misc/factorial_trailing_zeroes.c) * [Factorial Trailing Zeroes](https://github.com/kvedala/C/blob/master/misc/factorial_trailing_zeroes.c)
* [Fibonacci](https://github.com/TheAlgorithms/C/blob/master/misc/Fibonacci.c) * [Fibonacci](https://github.com/kvedala/C/blob/master/misc/Fibonacci.c)
* [Fibonacci Dp](https://github.com/TheAlgorithms/C/blob/master/misc/Fibonacci_DP.c) * [Fibonacci Dp](https://github.com/kvedala/C/blob/master/misc/Fibonacci_DP.c)
* [Fibonacci Fast](https://github.com/TheAlgorithms/C/blob/master/misc/Fibonacci_fast.c) * [Fibonacci Fast](https://github.com/kvedala/C/blob/master/misc/Fibonacci_fast.c)
* [Gcd](https://github.com/TheAlgorithms/C/blob/master/misc/GCD.c) * [Gcd](https://github.com/kvedala/C/blob/master/misc/GCD.c)
* [Is Armstrong](https://github.com/TheAlgorithms/C/blob/master/misc/is_Armstrong.c) * [Is Armstrong](https://github.com/kvedala/C/blob/master/misc/is_Armstrong.c)
* [Large Factorials](https://github.com/TheAlgorithms/C/blob/master/misc/Large_Factorials.c) * [Large Factorials](https://github.com/kvedala/C/blob/master/misc/Large_Factorials.c)
* [Lcm](https://github.com/TheAlgorithms/C/blob/master/misc/LCM.c) * [Lcm](https://github.com/kvedala/C/blob/master/misc/LCM.c)
* [Lerp](https://github.com/TheAlgorithms/C/blob/master/misc/lerp.c) * [Lerp](https://github.com/kvedala/C/blob/master/misc/lerp.c)
* [Lexicographic Permutations](https://github.com/TheAlgorithms/C/blob/master/misc/lexicographic_Permutations.c) * [Lexicographic Permutations](https://github.com/kvedala/C/blob/master/misc/lexicographic_Permutations.c)
* [Longest Subsequence](https://github.com/TheAlgorithms/C/blob/master/misc/Longest_SubSequence.c) * [Longest Subsequence](https://github.com/kvedala/C/blob/master/misc/Longest_SubSequence.c)
* [Mirror](https://github.com/TheAlgorithms/C/blob/master/misc/mirror.c) * [Mirror](https://github.com/kvedala/C/blob/master/misc/mirror.c)
* [Palindrome](https://github.com/TheAlgorithms/C/blob/master/misc/palindrome.c) * [Palindrome](https://github.com/kvedala/C/blob/master/misc/palindrome.c)
* [Pid](https://github.com/TheAlgorithms/C/blob/master/misc/pid.c) * [Pid](https://github.com/kvedala/C/blob/master/misc/pid.c)
* [Prime](https://github.com/TheAlgorithms/C/blob/master/misc/Prime.c) * [Prime](https://github.com/kvedala/C/blob/master/misc/Prime.c)
* [Prime Factoriziation](https://github.com/TheAlgorithms/C/blob/master/misc/Prime_Factoriziation.c) * [Prime Factoriziation](https://github.com/kvedala/C/blob/master/misc/Prime_Factoriziation.c)
* [Quartile](https://github.com/TheAlgorithms/C/blob/master/misc/QUARTILE.c) * [Quartile](https://github.com/kvedala/C/blob/master/misc/QUARTILE.c)
* [Rselect](https://github.com/TheAlgorithms/C/blob/master/misc/rselect.c) * [Rselect](https://github.com/kvedala/C/blob/master/misc/rselect.c)
* [Strong Number](https://github.com/TheAlgorithms/C/blob/master/misc/strong_Number.c) * [Strong Number](https://github.com/kvedala/C/blob/master/misc/strong_Number.c)
* [Sudoku Solver](https://github.com/TheAlgorithms/C/blob/master/misc/sudoku_solver.c) * [Sudoku Solver](https://github.com/kvedala/C/blob/master/misc/sudoku_solver.c)
* [Tower Of Hanoi](https://github.com/TheAlgorithms/C/blob/master/misc/Tower_Of_Hanoi.c) * [Tower Of Hanoi](https://github.com/kvedala/C/blob/master/misc/Tower_Of_Hanoi.c)
* [Union Find](https://github.com/TheAlgorithms/C/blob/master/misc/union_Find.c) * [Union Find](https://github.com/kvedala/C/blob/master/misc/union_Find.c)
## Numerical Methods ## Numerical Methods
* [Durand Kerner Roots](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/durand_kerner_roots.c) * [Durand Kerner Roots](https://github.com/kvedala/C/blob/master/numerical_methods/durand_kerner_roots.c)
* [Gauss Elimination](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/Gauss_Elimination.c) * [Gauss Elimination](https://github.com/kvedala/C/blob/master/numerical_methods/Gauss_Elimination.c)
* [Lagrange Theorem](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/lagrange_theorem.C) * [Lagrange Theorem](https://github.com/kvedala/C/blob/master/numerical_methods/lagrange_theorem.C)
* [Mean](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/MEAN.C) * [Mean](https://github.com/kvedala/C/blob/master/numerical_methods/MEAN.C)
* [Median](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/MEDIAN.C) * [Median](https://github.com/kvedala/C/blob/master/numerical_methods/MEDIAN.C)
* [Newton-Raphson-Root](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/newton-raphson-root.c) * [Newton-Raphson-Root](https://github.com/kvedala/C/blob/master/numerical_methods/newton-raphson-root.c)
* [Qr Decomposition](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/qr_decomposition.c) * [Qr Decomposition](https://github.com/kvedala/C/blob/master/numerical_methods/qr_decomposition.c)
* [Qr Eigen Values](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/qr_eigen_values.c) * [Qr Eigen Values](https://github.com/kvedala/C/blob/master/numerical_methods/qr_eigen_values.c)
* [Seidal](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/Seidal.C) * [Seidal](https://github.com/kvedala/C/blob/master/numerical_methods/Seidal.C)
* [Simpsons 1-3Rd Rule](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/simpsons_1-3rd%20rule.c) * [Simpsons 1-3Rd Rule](https://github.com/kvedala/C/blob/master/numerical_methods/simpsons_1-3rd%20rule.c)
* [Variance](https://github.com/TheAlgorithms/C/blob/master/numerical_methods/variance.c) * [Variance](https://github.com/kvedala/C/blob/master/numerical_methods/variance.c)
## Project Euler ## Project Euler
* Problem 01 * Problem 01
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2001/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2001/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2001/sol2.c) * [Sol2](https://github.com/kvedala/C/blob/master/project_euler/Problem%2001/sol2.c)
* [Sol3](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2001/sol3.c) * [Sol3](https://github.com/kvedala/C/blob/master/project_euler/Problem%2001/sol3.c)
* [Sol4](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2001/sol4.c) * [Sol4](https://github.com/kvedala/C/blob/master/project_euler/Problem%2001/sol4.c)
* Problem 02 * Problem 02
* [So1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2002/so1.c) * [So1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2002/so1.c)
* Problem 03 * Problem 03
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2003/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2003/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2003/sol2.c) * [Sol2](https://github.com/kvedala/C/blob/master/project_euler/Problem%2003/sol2.c)
* Problem 04 * Problem 04
* [Sol](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2004/sol.c) * [Sol](https://github.com/kvedala/C/blob/master/project_euler/Problem%2004/sol.c)
* Problem 05 * Problem 05
* [Sol](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2005/sol.c) * [Sol](https://github.com/kvedala/C/blob/master/project_euler/Problem%2005/sol.c)
* Problem 06 * Problem 06
* [Sol](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2006/sol.c) * [Sol](https://github.com/kvedala/C/blob/master/project_euler/Problem%2006/sol.c)
* Problem 07 * Problem 07
* [Sol](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2007/sol.c) * [Sol](https://github.com/kvedala/C/blob/master/project_euler/Problem%2007/sol.c)
* Problem 08 * Problem 08
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2008/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2008/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2008/sol2.c) * [Sol2](https://github.com/kvedala/C/blob/master/project_euler/Problem%2008/sol2.c)
* Problem 09 * Problem 09
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2009/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2009/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2009/sol2.c) * [Sol2](https://github.com/kvedala/C/blob/master/project_euler/Problem%2009/sol2.c)
* Problem 10 * Problem 10
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2010/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2010/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2010/sol2.c) * [Sol2](https://github.com/kvedala/C/blob/master/project_euler/Problem%2010/sol2.c)
* Problem 12 * Problem 12
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2012/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2012/sol1.c)
* Problem 13 * Problem 13
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2013/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2013/sol1.c)
* Problem 14 * Problem 14
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2014/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2014/sol1.c)
* Problem 15 * Problem 15
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2015/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2015/sol1.c)
* Problem 16 * Problem 16
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2016/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2016/sol1.c)
* Problem 401 * Problem 19
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%20401/sol1.c) * [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2019/sol1.c)
* Problem 20
* [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2020/sol1.c)
* Problem 21
* [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2021/sol1.c)
* Problem 22
* [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2022/sol1.c)
* Problem 23
* [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2023/sol1.c)
* [Sol2](https://github.com/kvedala/C/blob/master/project_euler/Problem%2023/sol2.c)
* Problem 25
* [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2025/sol1.c)
* Problem 26
* [Sol1](https://github.com/kvedala/C/blob/master/project_euler/Problem%2026/sol1.c)
## Searching ## Searching
* [Binary Search](https://github.com/TheAlgorithms/C/blob/master/searching/Binary_Search.c) * [Binary Search](https://github.com/kvedala/C/blob/master/searching/Binary_Search.c)
* [Fibonacci Search](https://github.com/TheAlgorithms/C/blob/master/searching/fibonacci_Search.c) * [Fibonacci Search](https://github.com/kvedala/C/blob/master/searching/fibonacci_Search.c)
* [Interpolation Search](https://github.com/TheAlgorithms/C/blob/master/searching/interpolation_search.c) * [Interpolation Search](https://github.com/kvedala/C/blob/master/searching/interpolation_search.c)
* [Jump Search](https://github.com/TheAlgorithms/C/blob/master/searching/Jump_Search.c) * [Jump Search](https://github.com/kvedala/C/blob/master/searching/Jump_Search.c)
* [Linear Search](https://github.com/TheAlgorithms/C/blob/master/searching/Linear_Search.c) * [Linear Search](https://github.com/kvedala/C/blob/master/searching/Linear_Search.c)
* [Modified Binary Search](https://github.com/TheAlgorithms/C/blob/master/searching/modified_Binary_Search.c) * [Modified Binary Search](https://github.com/kvedala/C/blob/master/searching/modified_Binary_Search.c)
* [Other Binary Search](https://github.com/TheAlgorithms/C/blob/master/searching/Other_Binary_Search.c) * [Other Binary Search](https://github.com/kvedala/C/blob/master/searching/Other_Binary_Search.c)
* Pattern Search * Pattern Search
* [Boyer Moore Search](https://github.com/TheAlgorithms/C/blob/master/searching/pattern_search/boyer_moore_search.c) * [Boyer Moore Search](https://github.com/kvedala/C/blob/master/searching/pattern_search/boyer_moore_search.c)
* [Naive Search](https://github.com/TheAlgorithms/C/blob/master/searching/pattern_search/naive_search.c) * [Naive Search](https://github.com/kvedala/C/blob/master/searching/pattern_search/naive_search.c)
* [Rabin Karp Search](https://github.com/TheAlgorithms/C/blob/master/searching/pattern_search/rabin_karp_search.c) * [Rabin Karp Search](https://github.com/kvedala/C/blob/master/searching/pattern_search/rabin_karp_search.c)
* [Ternary Search](https://github.com/TheAlgorithms/C/blob/master/searching/ternary_search.c) * [Ternary Search](https://github.com/kvedala/C/blob/master/searching/ternary_search.c)
## Sorting ## Sorting
* [Bead Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Bead_Sort.c) * [Bead Sort](https://github.com/kvedala/C/blob/master/sorting/Bead_Sort.c)
* [Binary Insertion Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/binary_Insertion_Sort.c) * [Binary Insertion Sort](https://github.com/kvedala/C/blob/master/sorting/binary_Insertion_Sort.c)
* [Bogo Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Bogo_Sort.c) * [Bogo Sort](https://github.com/kvedala/C/blob/master/sorting/Bogo_Sort.c)
* [Bubble Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Bubble_Sort.c) * [Bubble Sort](https://github.com/kvedala/C/blob/master/sorting/Bubble_Sort.c)
* [Bubble Sort 2](https://github.com/TheAlgorithms/C/blob/master/sorting/Bubble_Sort_2.c) * [Bubble Sort 2](https://github.com/kvedala/C/blob/master/sorting/Bubble_Sort_2.c)
* [Bucket Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Bucket_Sort.c) * [Bucket Sort](https://github.com/kvedala/C/blob/master/sorting/Bucket_Sort.c)
* [Cocktail Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Cocktail_Sort.c) * [Cocktail Sort](https://github.com/kvedala/C/blob/master/sorting/Cocktail_Sort.c)
* [Comb Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/comb_sort.c) * [Comb Sort](https://github.com/kvedala/C/blob/master/sorting/comb_sort.c)
* [Counting Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/counting_Sort.c) * [Counting Sort](https://github.com/kvedala/C/blob/master/sorting/counting_Sort.c)
* [Cycle Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Cycle_Sort.c) * [Cycle Sort](https://github.com/kvedala/C/blob/master/sorting/Cycle_Sort.c)
* [Gnome Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/gnome_sort.c) * [Gnome Sort](https://github.com/kvedala/C/blob/master/sorting/gnome_sort.c)
* [Heap Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Heap_Sort.c) * [Heap Sort](https://github.com/kvedala/C/blob/master/sorting/Heap_Sort.c)
* [Insertion Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/insertion_Sort.c) * [Insertion Sort](https://github.com/kvedala/C/blob/master/sorting/insertion_Sort.c)
* [Merge Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/merge_sort.c) * [Merge Sort](https://github.com/kvedala/C/blob/master/sorting/merge_sort.c)
* [Multikey Quick Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/multikey_quick_sort.c) * [Multikey Quick Sort](https://github.com/kvedala/C/blob/master/sorting/multikey_quick_sort.c)
* [Pancake Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Pancake_Sort.c) * [Pancake Sort](https://github.com/kvedala/C/blob/master/sorting/Pancake_Sort.c)
* [Partition Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/partition_Sort.c) * [Partition Sort](https://github.com/kvedala/C/blob/master/sorting/partition_Sort.c)
* [Pigeonhole Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Pigeonhole_Sort.c) * [Pigeonhole Sort](https://github.com/kvedala/C/blob/master/sorting/Pigeonhole_Sort.c)
* [Quick Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Quick_Sort.c) * [Quick Sort](https://github.com/kvedala/C/blob/master/sorting/Quick_Sort.c)
* [Radix Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/radix_sort.c) * [Radix Sort](https://github.com/kvedala/C/blob/master/sorting/radix_sort.c)
* [Radix Sort 2](https://github.com/TheAlgorithms/C/blob/master/sorting/radix_sort_2.c) * [Radix Sort 2](https://github.com/kvedala/C/blob/master/sorting/radix_sort_2.c)
* [Random Quick Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/random_quick_sort.c) * [Random Quick Sort](https://github.com/kvedala/C/blob/master/sorting/random_quick_sort.c)
* [Selection Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Selection_Sort.c) * [Selection Sort](https://github.com/kvedala/C/blob/master/sorting/Selection_Sort.c)
* [Shaker Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/shaker_sort.c) * [Shaker Sort](https://github.com/kvedala/C/blob/master/sorting/shaker_sort.c)
* [Shell Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/shell_Sort.c) * [Shell Sort](https://github.com/kvedala/C/blob/master/sorting/shell_Sort.c)
* [Shell Sort2](https://github.com/TheAlgorithms/C/blob/master/sorting/shell_Sort2.c) * [Shell Sort2](https://github.com/kvedala/C/blob/master/sorting/shell_Sort2.c)
* [Stooge Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/Stooge_Sort.c) * [Stooge Sort](https://github.com/kvedala/C/blob/master/sorting/Stooge_Sort.c)