TheAlgorithms-C/DIRECTORY.md

266 lines
20 KiB
Markdown
Raw Normal View History

2020-01-09 11:29:42 +03:00
## Computer Oriented Statistical Methods
2020-01-09 11:32:40 +03:00
* [Gauss Elimination](https://github.com/TheAlgorithms/C/blob/master/computer_oriented_statistical_methods/Gauss_Elimination.c)
* [Lagrange Theorem](https://github.com/TheAlgorithms/C/blob/master/computer_oriented_statistical_methods/lagrange_theorem.C)
* [Mean](https://github.com/TheAlgorithms/C/blob/master/computer_oriented_statistical_methods/MEAN.C)
* [Median](https://github.com/TheAlgorithms/C/blob/master/computer_oriented_statistical_methods/MEDIAN.C)
* [Seidal](https://github.com/TheAlgorithms/C/blob/master/computer_oriented_statistical_methods/Seidal.C)
* [Simpson'S 1-3Rd Rule](https://github.com/TheAlgorithms/C/blob/master/computer_oriented_statistical_methods/simpson's%201-3rd%20rule.c)
* [Variance](https://github.com/TheAlgorithms/C/blob/master/computer_oriented_statistical_methods/variance.c)
2020-01-09 11:29:42 +03:00
## Conversions
2020-01-09 11:32:40 +03:00
* [Binary2Octal](https://github.com/TheAlgorithms/C/blob/master/conversions/binary2octal.c)
* [Binary To Decimal](https://github.com/TheAlgorithms/C/blob/master/conversions/binary_to_decimal.c)
* [Binary To Hexa](https://github.com/TheAlgorithms/C/blob/master/conversions/binary_to_hexa.c)
* [Decimal To Binary](https://github.com/TheAlgorithms/C/blob/master/conversions/decimal%20_to_binary.c)
* [Decimal To Hexa](https://github.com/TheAlgorithms/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 Recursion](https://github.com/TheAlgorithms/C/blob/master/conversions/decimal_to_octal_recursion.c)
* [Hexal To Octal](https://github.com/TheAlgorithms/C/blob/master/conversions/hexal_to_octal.c)
* [Todecimal](https://github.com/TheAlgorithms/C/blob/master/conversions/toDecimal.c)
2020-01-09 11:29:42 +03:00
## Data Structures
* Array
2020-01-09 11:32:40 +03:00
* [Carray](https://github.com/TheAlgorithms/C/blob/master/data_structures/Array/CArray.c)
* [Carraytests](https://github.com/TheAlgorithms/C/blob/master/data_structures/Array/CArrayTests.c)
2020-01-09 11:29:42 +03:00
* Binary Trees
2020-01-09 11:32:40 +03:00
* [Avl](https://github.com/TheAlgorithms/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)
* [Create Node](https://github.com/TheAlgorithms/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)
* [Redblacktree](https://github.com/TheAlgorithms/C/blob/master/data_structures/binary_trees/redBlackTree.c)
2020-01-09 11:29:42 +03:00
* Dictionary
2020-01-09 11:32:40 +03:00
* [Dict](https://github.com/TheAlgorithms/C/blob/master/data_structures/dictionary/dict.c)
* [Test Program](https://github.com/TheAlgorithms/C/blob/master/data_structures/dictionary/test_program.c)
2020-01-09 11:29:42 +03:00
* Graphs
2020-01-09 11:32:40 +03:00
* [Bellman-Ford](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/Bellman-Ford.c)
* [Bfs](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/BFS.c)
* [Dfs](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/DFS.c)
* [Dijkstra](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/Dijkstra.c)
* [Floyd-Warshall](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/Floyd-Warshall.c)
* [Kruskal](https://github.com/TheAlgorithms/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)
* [Topologicalsort](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/topologicalSort.c)
2020-01-09 11:29:42 +03:00
* Heap
2020-01-09 11:32:40 +03:00
* [Maxheap](https://github.com/TheAlgorithms/C/blob/master/data_structures/heap/maxheap.c)
* [Minheap](https://github.com/TheAlgorithms/C/blob/master/data_structures/heap/minheap.c)
2020-01-09 11:29:42 +03:00
* Linked List
2020-01-09 11:32:40 +03:00
* [Mergelinkedlists](https://github.com/TheAlgorithms/C/blob/master/data_structures/linked_list/mergeLinkedLists.c)
* [Middleelementinlist](https://github.com/TheAlgorithms/C/blob/master/data_structures/linked_list/middleElementInList.c)
* [Singly Link List Deletion](https://github.com/TheAlgorithms/C/blob/master/data_structures/linked_list/singly_link_list_deletion.c)
* [Stack Using Linkedlists](https://github.com/TheAlgorithms/C/blob/master/data_structures/linked_list/stack_using_linkedlists.c)
2020-01-09 11:29:42 +03:00
* List
2020-01-09 11:32:40 +03:00
* [List](https://github.com/TheAlgorithms/C/blob/master/data_structures/list/list.c)
* [Main](https://github.com/TheAlgorithms/C/blob/master/data_structures/list/main.c)
* [Queue](https://github.com/TheAlgorithms/C/blob/master/data_structures/queue.c)
* [Stack](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack.c)
2020-01-09 11:29:42 +03:00
* Stack
2020-01-09 11:32:40 +03:00
* [Main](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack/main.c)
* [Parenthesis](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack/parenthesis.c)
* [Stack](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack/stack.c)
2020-01-09 11:29:42 +03:00
* Stack Linkedlist
2020-01-09 11:32:40 +03:00
* [Main](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack/stack_linkedlist/main.c)
* [Stack](https://github.com/TheAlgorithms/C/blob/master/data_structures/stack/stack_linkedlist/stack.c)
2020-01-09 11:29:42 +03:00
* Trie
2020-01-09 11:32:40 +03:00
* [Trie](https://github.com/TheAlgorithms/C/blob/master/data_structures/trie/trie.c)
2020-01-09 11:29:42 +03:00
## Exercism
* Acronym
2020-01-09 11:32:40 +03:00
* [Acronym](https://github.com/TheAlgorithms/C/blob/master/exercism/acronym/acronym.c)
2020-01-09 11:29:42 +03:00
* Hello-World
2020-01-09 11:32:40 +03:00
* [Hello World](https://github.com/TheAlgorithms/C/blob/master/exercism/hello-world/hello_world.c)
2020-01-09 11:29:42 +03:00
* Isogram
2020-01-09 11:32:40 +03:00
* [Isogram](https://github.com/TheAlgorithms/C/blob/master/exercism/isogram/isogram.c)
2020-01-09 11:29:42 +03:00
* Rna-Transcription
2020-01-09 11:32:40 +03:00
* [Rna Transcription](https://github.com/TheAlgorithms/C/blob/master/exercism/rna-transcription/rna_transcription.c)
2020-01-09 11:29:42 +03:00
* Word-Count
2020-01-09 11:32:40 +03:00
* [Word Count](https://github.com/TheAlgorithms/C/blob/master/exercism/word-count/word_count.c)
2020-01-09 11:29:42 +03:00
## Hash
2020-01-09 11:32:40 +03:00
* [Hash](https://github.com/TheAlgorithms/C/blob/master/hash/hash.c)
* [Test Program](https://github.com/TheAlgorithms/C/blob/master/hash/test_program.c)
2020-01-09 11:29:42 +03:00
## Leetcode
* Src
2020-01-09 11:32:40 +03:00
* [1](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/1.c)
* [101](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/101.c)
* [104](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/104.c)
* [108](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/108.c)
* [1089](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/1089.c)
* [109](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/109.c)
* [11](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/11.c)
* [110](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/110.c)
* [112](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/112.c)
* [1184](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/1184.c)
* [1189](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/1189.c)
* [12](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/12.c)
* [1207](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/1207.c)
* [121](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/121.c)
* [125](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/125.c)
* [13](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/13.c)
* [136](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/136.c)
* [141](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/141.c)
* [142](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/142.c)
* [153](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/153.c)
* [160](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/160.c)
* [169](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/169.c)
* [173](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/173.c)
* [189](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/189.c)
* [190](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/190.c)
* [191](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/191.c)
* [2](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/2.c)
* [20](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/20.c)
* [201](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/201.c)
* [203](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/203.c)
* [206](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/206.c)
* [21](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/21.c)
* [215](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/215.c)
* [217](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/217.c)
* [226](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/226.c)
* [231](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/231.c)
* [234](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/234.c)
* [24](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/24.c)
* [242](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/242.c)
* [26](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/26.c)
* [268](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/268.c)
* [27](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/27.c)
* [278](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/278.c)
* [28](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/28.c)
* [283](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/283.c)
* [287](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/287.c)
* [29](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/29.c)
* [3](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/3.c)
* [344](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/344.c)
* [35](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/35.c)
* [367](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/367.c)
* [38](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/38.c)
* [387](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/387.c)
* [389](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/389.c)
* [4](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/4.c)
* [404](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/404.c)
* [442](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/442.c)
* [461](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/461.c)
* [476](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/476.c)
* [509](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/509.c)
* [520](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/520.c)
* [53](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/53.c)
* [561](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/561.c)
* [617](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/617.c)
* [647](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/647.c)
* [66](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/66.c)
* [674](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/674.c)
* [7](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/7.c)
* [700](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/700.c)
* [701](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/701.c)
* [704](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/704.c)
* [709](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/709.c)
* [771](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/771.c)
* [8](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/8.c)
* [82](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/82.c)
* [83](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/83.c)
* [852](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/852.c)
* [876](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/876.c)
* [9](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/9.c)
* [905](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/905.c)
* [917](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/917.c)
* [938](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/938.c)
* [94](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/94.c)
* [965](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/965.c)
* [977](https://github.com/TheAlgorithms/C/blob/master/leetcode/src/977.c)
2020-01-09 11:29:42 +03:00
## Misc
2020-01-09 11:32:40 +03:00
* [Armstrongnumber](https://github.com/TheAlgorithms/C/blob/master/misc/ArmstrongNumber.c)
* [Cantor Set](https://github.com/TheAlgorithms/C/blob/master/misc/cantor_set.c)
* [Cartesiantopolar](https://github.com/TheAlgorithms/C/blob/master/misc/cartesianToPolar.c)
* [Catalan](https://github.com/TheAlgorithms/C/blob/master/misc/catalan.c)
* [Collatz](https://github.com/TheAlgorithms/C/blob/master/misc/Collatz.c)
* [Demonetization](https://github.com/TheAlgorithms/C/blob/master/misc/demonetization.c)
* [Factorial](https://github.com/TheAlgorithms/C/blob/master/misc/Factorial.c)
* [Factorial Trailing Zeroes](https://github.com/TheAlgorithms/C/blob/master/misc/factorial_trailing_zeroes.c)
* [Fibonacci](https://github.com/TheAlgorithms/C/blob/master/misc/Fibonacci.c)
* [Fibonaccidp](https://github.com/TheAlgorithms/C/blob/master/misc/FibonacciDP.c)
* [Gcd](https://github.com/TheAlgorithms/C/blob/master/misc/GCD.c)
* [Isarmstrong](https://github.com/TheAlgorithms/C/blob/master/misc/isArmstrong.c)
* [Large Factorials](https://github.com/TheAlgorithms/C/blob/master/misc/Large_Factorials.c)
* [Lcm](https://github.com/TheAlgorithms/C/blob/master/misc/LCM.c)
* [Lerp](https://github.com/TheAlgorithms/C/blob/master/misc/lerp.c)
* [Lexicographicpermutations](https://github.com/TheAlgorithms/C/blob/master/misc/lexicographicPermutations.c)
* [Longestsubsequence](https://github.com/TheAlgorithms/C/blob/master/misc/LongestSubSequence.c)
* [Mirror](https://github.com/TheAlgorithms/C/blob/master/misc/mirror.c)
* [Palindrome](https://github.com/TheAlgorithms/C/blob/master/misc/palindrome.c)
* [Pid](https://github.com/TheAlgorithms/C/blob/master/misc/pid.c)
* [Prime](https://github.com/TheAlgorithms/C/blob/master/misc/Prime.c)
* [Primefactoriziation](https://github.com/TheAlgorithms/C/blob/master/misc/PrimeFactoriziation.c)
* [Quartile](https://github.com/TheAlgorithms/C/blob/master/misc/QUARTILE.c)
* [Rselect](https://github.com/TheAlgorithms/C/blob/master/misc/rselect.c)
* [Strongnumber](https://github.com/TheAlgorithms/C/blob/master/misc/strongNumber.c)
* [Sudokusolver](https://github.com/TheAlgorithms/C/blob/master/misc/sudokusolver.c)
* [Towerofhanoi](https://github.com/TheAlgorithms/C/blob/master/misc/TowerOfHanoi.c)
* [Unionfind](https://github.com/TheAlgorithms/C/blob/master/misc/unionFind.c)
2020-01-09 11:29:42 +03:00
## Project Euler
* Problem 01
2020-01-09 11:32:40 +03:00
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2001/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2001/sol2.c)
* [Sol3](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2001/sol3.c)
* [Sol4](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2001/sol4.c)
2020-01-09 11:29:42 +03:00
* Problem 02
2020-01-09 11:32:40 +03:00
* [So1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2002/so1.c)
2020-01-09 11:29:42 +03:00
* Problem 03
2020-01-09 11:32:40 +03:00
* [Sol1](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2003/sol1.c)
* [Sol2](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2003/sol2.c)
2020-01-09 11:29:42 +03:00
* Problem 04
2020-01-09 11:32:40 +03:00
* [Sol](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2004/sol.c)
2020-01-09 11:29:42 +03:00
* Problem 05
2020-01-09 11:32:40 +03:00
* [Sol](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2005/sol.c)
2020-01-09 11:29:42 +03:00
* Problem 06
2020-01-09 11:32:40 +03:00
* [Sol](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2006/sol.c)
2020-01-09 11:29:42 +03:00
* Problem 07
2020-01-09 11:32:40 +03:00
* [Sol](https://github.com/TheAlgorithms/C/blob/master/project_euler/Problem%2007/sol.c)
2020-01-09 11:29:42 +03:00
## Searching
2020-01-09 11:32:40 +03:00
* [Binary Search](https://github.com/TheAlgorithms/C/blob/master/searching/Binary_Search.c)
* [Fibonaccisearch](https://github.com/TheAlgorithms/C/blob/master/searching/fibonacciSearch.c)
* [Interpolation Search](https://github.com/TheAlgorithms/C/blob/master/searching/interpolation_search.c)
* [Jump Search](https://github.com/TheAlgorithms/C/blob/master/searching/Jump_Search.c)
* [Linearsearch](https://github.com/TheAlgorithms/C/blob/master/searching/LinearSearch.c)
* [Modifiedbinarysearch](https://github.com/TheAlgorithms/C/blob/master/searching/modifiedBinarySearch.c)
* [Other Binary Search](https://github.com/TheAlgorithms/C/blob/master/searching/Other_Binary_Search.c)
2020-01-09 11:29:42 +03:00
* Pattern Search
2020-01-09 11:32:40 +03:00
* [Boyer Moore Search](https://github.com/TheAlgorithms/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)
* [Rabin Karp Search](https://github.com/TheAlgorithms/C/blob/master/searching/pattern_search/rabin_karp_search.c)
* [Ternarysearch](https://github.com/TheAlgorithms/C/blob/master/searching/ternarysearch.c)
2020-01-09 11:29:42 +03:00
## Simple Client Server
2020-01-09 11:32:40 +03:00
* [Client](https://github.com/TheAlgorithms/C/blob/master/Simple%20Client%20Server/client.c)
* [Server](https://github.com/TheAlgorithms/C/blob/master/Simple%20Client%20Server/server.c)
* [Udpclient](https://github.com/TheAlgorithms/C/blob/master/Simple%20Client%20Server/UDPClient.c)
* [Udpserver](https://github.com/TheAlgorithms/C/blob/master/Simple%20Client%20Server/UDPServer.c)
2020-01-09 11:29:42 +03:00
## Sorting
2020-01-09 11:32:40 +03:00
* [Beadsort](https://github.com/TheAlgorithms/C/blob/master/sorting/BeadSort.c)
* [Binaryinsertionsort](https://github.com/TheAlgorithms/C/blob/master/sorting/binaryInsertionSort.c)
* [Bogosort](https://github.com/TheAlgorithms/C/blob/master/sorting/BogoSort.c)
* [Bubblesort](https://github.com/TheAlgorithms/C/blob/master/sorting/BubbleSort.c)
* [Bucketsort](https://github.com/TheAlgorithms/C/blob/master/sorting/BucketSort.c)
* [Comb Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/comb_sort.c)
* [Countingsort](https://github.com/TheAlgorithms/C/blob/master/sorting/countingSort.c)
* [Cyclesort](https://github.com/TheAlgorithms/C/blob/master/sorting/CycleSort.c)
* [Gnome Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/gnome_sort.c)
* [Heapsort](https://github.com/TheAlgorithms/C/blob/master/sorting/HeapSort.c)
* [Insertionsort](https://github.com/TheAlgorithms/C/blob/master/sorting/insertionSort.c)
* [Mergesort](https://github.com/TheAlgorithms/C/blob/master/sorting/mergesort.c)
* [Multikey Quicksort](https://github.com/TheAlgorithms/C/blob/master/sorting/multikey_quicksort.c)
* [Otherbubblesort](https://github.com/TheAlgorithms/C/blob/master/sorting/OtherBubbleSort.c)
* [Pancakesort](https://github.com/TheAlgorithms/C/blob/master/sorting/PancakeSort.c)
* [Partitionsort](https://github.com/TheAlgorithms/C/blob/master/sorting/partitionSort.c)
* [Quicksort](https://github.com/TheAlgorithms/C/blob/master/sorting/QuickSort.c)
* [Radix Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/radix_sort.c)
* [Radixsort](https://github.com/TheAlgorithms/C/blob/master/sorting/radixsort.c)
* [Random Quick Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/random_quick_sort.c)
* [Selectionsort](https://github.com/TheAlgorithms/C/blob/master/sorting/SelectionSort.c)
* [Shaker Sort](https://github.com/TheAlgorithms/C/blob/master/sorting/shaker_sort.c)
* [Shellsort](https://github.com/TheAlgorithms/C/blob/master/sorting/shellSort.c)
* [Stoogesort](https://github.com/TheAlgorithms/C/blob/master/sorting/StoogeSort.c)