TheAlgorithms-C/README.md

70 lines
944 B
Markdown
Raw Normal View History

2016-07-16 13:17:03 +03:00
# C
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
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
- decimal_to_hexa
- decimal_to_octal
2017-12-23 16:38:20 +03:00
- to_decimal
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
2017-10-20 19:43:54 +03:00
linked_list
- singly_link_list_deletion
2017-12-23 16:14:29 +03:00
- stack_using_linkedlists
2017-10-20 19:43:54 +03:00
binary_trees
- create_node
- recursive_traversals
trie
- trie
2017-10-20 19:33:41 +03:00
2017-10-20 19:45:35 +03:00
## Searching
2017-10-20 19:43:54 +03:00
- Binary_Search
- Other_Binary_Search
- Jump_Search
2017-10-20 19:33:41 +03:00
2017-10-20 19:45:35 +03:00
## Sorting
2017-10-20 19:43:54 +03:00
- binary_insertion_sort
- BubbleSort
- BogoSort
- InsertionSort
- mergesort
- OtherBubbleSort
- QuickSort
- SelectionSort
- shaker_sort
- HeapSort
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
2017-10-20 19:43:54 +03:00
- Binning
- Factorial
- Fibonacci
- isArmstrong
- LongestSubSequence
- palindrome
- QUARTILE
- rselect
- strongNumber
- TowerOfHanoi
2017-12-23 16:19:00 +03:00
- Greatest Common Divisor