TheAlgorithms-C/README.md

127 lines
2.1 KiB
Markdown
Raw Normal View History

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