TheAlgorithms-C/README.md

62 lines
804 B
Markdown
Raw Normal View History

2016-07-16 18:17:03 +08:00
# C
All Algorithms implemented in C
2017-10-21 00:33:41 +08:00
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
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-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
linked_list
- singly_link_list_deletion
binary_trees
- create_node
- recursive_traversals
trie
- trie
2017-10-21 00:33:41 +08:00
2017-10-21 00:45:35 +08:00
## Searching
2017-10-21 00:43:54 +08:00
- Binary_Search
- Other_Binary_Search
2017-10-21 00:33:41 +08:00
2017-10-21 00:45:35 +08:00
## Sorting
2017-10-21 00:43:54 +08:00
- binary_insertion_sort
- BubbleSort
- BogoSort
- InsertionSort
- mergesort
- OtherBubbleSort
- QuickSort
- SelectionSort
- shaker_sort
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