2019-08-08 08:00:30 +08:00
|
|
|
C
|
|
|
|
========
|
|
|
|
|
|
|
|
## LeetCode Algorithm
|
2019-08-08 08:05:37 +08:00
|
|
|
|
2019-08-14 02:43:43 +08:00
|
|
|
- [Solution](https://github.com/TheAlgorithms/C/tree/master/leetcode) for [LeetCode](https://leetcode.com/problemset/all/)
|
2017-10-15 00:55:41 +08:00
|
|
|
|
2017-10-21 00:45:35 +08:00
|
|
|
## Computer Oriented Statistical Methods
|
2017-10-21 00:43:54 +08:00
|
|
|
- Gauss_Elimination
|
|
|
|
- Lagrange_Theorem
|
|
|
|
- Mean
|
|
|
|
- Median
|
|
|
|
- Seidal
|
|
|
|
- Simpson's_1-3rd_rule.c
|
|
|
|
- Variance
|
2018-02-02 22:54:31 +08:00
|
|
|
- statistic (C Lib)
|
2017-10-21 00:33:41 +08:00
|
|
|
|
2017-10-21 00:45:35 +08:00
|
|
|
## Conversions
|
2017-10-21 00:43:54 +08:00
|
|
|
- binary_to_decimal
|
|
|
|
- decimal _to_binary
|
|
|
|
- decimal_to_hexa
|
|
|
|
- decimal_to_octal
|
2017-12-23 21:38:20 +08:00
|
|
|
- to_decimal
|
2017-10-21 00:33:41 +08:00
|
|
|
|
2017-10-21 00:45:35 +08:00
|
|
|
## Data Structures
|
2017-10-21 00:43:54 +08:00
|
|
|
- stack
|
|
|
|
- queue
|
2017-12-26 00:56:10 +08:00
|
|
|
- dictionary
|
2019-08-08 08:00:30 +08:00
|
|
|
- linked_list
|
2017-10-21 00:43:54 +08:00
|
|
|
- singly_link_list_deletion
|
2017-12-23 21:14:29 +08:00
|
|
|
- stack_using_linkedlists
|
2019-08-08 08:00:30 +08:00
|
|
|
- binary_trees
|
2017-10-21 00:43:54 +08:00
|
|
|
- create_node
|
|
|
|
- recursive_traversals
|
2019-08-08 08:00:30 +08:00
|
|
|
- trie
|
2017-10-21 00:43:54 +08:00
|
|
|
- trie
|
2017-10-21 00:33:41 +08:00
|
|
|
|
|
|
|
|
2017-10-21 00:45:35 +08:00
|
|
|
## Searching
|
2019-07-25 17:36:23 +08:00
|
|
|
- Linear_Search
|
2017-10-21 00:43:54 +08:00
|
|
|
- Binary_Search
|
|
|
|
- Other_Binary_Search
|
2017-12-10 22:29:48 +08:00
|
|
|
- Jump_Search
|
2019-07-25 17:36:23 +08:00
|
|
|
- Fibonacci_Search
|
|
|
|
- Interpolation_Search
|
|
|
|
- Modified_Binary_Search
|
2017-10-21 00:33:41 +08:00
|
|
|
|
|
|
|
|
2017-10-21 00:45:35 +08:00
|
|
|
## Sorting
|
2019-01-19 16:28:12 +08:00
|
|
|
- BinaryInsertionSort
|
2017-10-21 00:43:54 +08:00
|
|
|
- BubbleSort
|
2019-07-25 17:24:11 +08:00
|
|
|
- BucketSort
|
2017-10-21 00:43:54 +08:00
|
|
|
- BogoSort
|
2019-08-23 18:24:14 +08:00
|
|
|
- comb_sort
|
2019-07-25 17:24:11 +08:00
|
|
|
- CountingSort
|
2019-08-23 18:24:14 +08:00
|
|
|
- gnome_sort
|
2019-07-25 17:24:11 +08:00
|
|
|
- PartitionSort
|
|
|
|
- ShellSort
|
|
|
|
- RadixSort
|
2017-10-21 00:43:54 +08:00
|
|
|
- InsertionSort
|
2019-01-19 16:28:12 +08:00
|
|
|
- MergeSort
|
2017-10-21 00:43:54 +08:00
|
|
|
- OtherBubbleSort
|
|
|
|
- QuickSort
|
|
|
|
- SelectionSort
|
2019-01-19 16:28:12 +08:00
|
|
|
- ShakerSort
|
2017-12-10 22:29:48 +08:00
|
|
|
- HeapSort
|
2019-08-08 08:00:30 +08:00
|
|
|
|
2018-01-01 05:59:35 +08:00
|
|
|
## Hashing
|
2018-01-01 06:00:29 +08:00
|
|
|
- sdbm
|
|
|
|
- djb2
|
|
|
|
- xor8 (8 bit)
|
|
|
|
- adler_32 (32 bit)
|
2017-10-21 00:33:41 +08:00
|
|
|
|
|
|
|
|
2017-10-21 00:45:35 +08:00
|
|
|
## Misc
|
2017-10-21 00:43:54 +08:00
|
|
|
- Binning
|
|
|
|
- Factorial
|
|
|
|
- Fibonacci
|
|
|
|
- isArmstrong
|
|
|
|
- LongestSubSequence
|
|
|
|
- palindrome
|
|
|
|
- QUARTILE
|
|
|
|
- rselect
|
|
|
|
- strongNumber
|
|
|
|
- TowerOfHanoi
|
2017-12-23 21:19:00 +08:00
|
|
|
- Greatest Common Divisor
|
2018-03-24 02:33:48 +08:00
|
|
|
- Sudoku Solver
|
2019-02-12 23:33:05 +08:00
|
|
|
- prime factorization
|
2018-01-25 05:28:59 +08:00
|
|
|
|
2019-10-01 23:21:34 +08:00
|
|
|
## Project Euler
|
|
|
|
- Problem 1
|
|
|
|
- Problem 2
|
|
|
|
- Problem 3
|
|
|
|
- Problem 4
|
|
|
|
- Problem 5
|
|
|
|
- Problem 6
|
|
|
|
- Problem 7
|
|
|
|
|
2018-01-25 05:28:59 +08:00
|
|
|
|
|
|
|
## exercism
|
2018-01-27 02:38:48 +08:00
|
|
|
In this directory you will find (in the right order):
|
2018-01-25 05:29:39 +08:00
|
|
|
* hello-world
|
|
|
|
* isogram
|
|
|
|
* acronym
|
2018-01-27 02:38:48 +08:00
|
|
|
* word-count
|
|
|
|
* rna-transcription
|
|
|
|
|
2018-10-20 16:16:32 +08:00
|
|
|
## Simple Client Server Implementation
|
|
|
|
This directory contains
|
|
|
|
* client.c
|
|
|
|
* server.c
|
2019-02-18 14:30:24 +08:00
|
|
|
|
2019-05-10 01:47:34 +08:00
|
|
|
First execute server.c in a terminal and then client.c in a different terminal. Enables communication between two terminals.
|