2016-07-16 15:47:03 +05:30
|
|
|
# C
|
2017-10-15 00:55:41 +08:00
|
|
|
|
2017-10-20 22:15:35 +05:30
|
|
|
## Computer Oriented Statistical Methods
|
2017-10-20 22:13:54 +05:30
|
|
|
- Gauss_Elimination
|
|
|
|
- Lagrange_Theorem
|
|
|
|
- Mean
|
|
|
|
- Median
|
|
|
|
- Seidal
|
|
|
|
- Simpson's_1-3rd_rule.c
|
|
|
|
- Variance
|
2017-10-20 22:03:41 +05:30
|
|
|
|
2017-10-20 22:15:35 +05:30
|
|
|
## Conversions
|
2017-10-20 22:13:54 +05:30
|
|
|
- binary_to_decimal
|
|
|
|
- decimal _to_binary
|
|
|
|
- decimal_to_hexa
|
|
|
|
- decimal_to_octal
|
2017-12-23 14:38:20 +01:00
|
|
|
- to_decimal
|
2017-10-20 22:03:41 +05:30
|
|
|
|
2017-10-20 22:15:35 +05:30
|
|
|
## Data Structures
|
2017-10-20 22:13:54 +05:30
|
|
|
- stack
|
|
|
|
- queue
|
2017-12-25 17:56:10 +01:00
|
|
|
- dictionary
|
2017-10-20 22:13:54 +05:30
|
|
|
linked_list
|
|
|
|
- singly_link_list_deletion
|
2017-12-23 14:14:29 +01:00
|
|
|
- stack_using_linkedlists
|
2017-10-20 22:13:54 +05:30
|
|
|
binary_trees
|
|
|
|
- create_node
|
|
|
|
- recursive_traversals
|
|
|
|
trie
|
|
|
|
- trie
|
2017-10-20 22:03:41 +05:30
|
|
|
|
|
|
|
|
2017-10-20 22:15:35 +05:30
|
|
|
## Searching
|
2017-10-20 22:13:54 +05:30
|
|
|
- Binary_Search
|
|
|
|
- Other_Binary_Search
|
2017-12-10 23:29:48 +09:00
|
|
|
- Jump_Search
|
2017-10-20 22:03:41 +05:30
|
|
|
|
|
|
|
|
2017-10-20 22:15:35 +05:30
|
|
|
## Sorting
|
2017-10-20 22:13:54 +05:30
|
|
|
- binary_insertion_sort
|
|
|
|
- BubbleSort
|
|
|
|
- BogoSort
|
|
|
|
- InsertionSort
|
|
|
|
- mergesort
|
|
|
|
- OtherBubbleSort
|
|
|
|
- QuickSort
|
|
|
|
- SelectionSort
|
|
|
|
- shaker_sort
|
2017-12-10 23:29:48 +09:00
|
|
|
- HeapSort
|
2017-12-31 22:59:35 +01:00
|
|
|
|
|
|
|
## Hashing
|
2017-12-31 23:00:29 +01:00
|
|
|
- sdbm
|
|
|
|
- djb2
|
|
|
|
- xor8 (8 bit)
|
|
|
|
- adler_32 (32 bit)
|
2017-10-20 22:03:41 +05:30
|
|
|
|
|
|
|
|
2017-10-20 22:15:35 +05:30
|
|
|
## Misc
|
2017-10-20 22:13:54 +05:30
|
|
|
- Binning
|
|
|
|
- Factorial
|
|
|
|
- Fibonacci
|
|
|
|
- isArmstrong
|
|
|
|
- LongestSubSequence
|
|
|
|
- palindrome
|
|
|
|
- QUARTILE
|
|
|
|
- rselect
|
|
|
|
- strongNumber
|
|
|
|
- TowerOfHanoi
|
2017-12-23 14:19:00 +01:00
|
|
|
- Greatest Common Divisor
|
2018-01-24 22:28:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
## exercism
|
2018-01-24 22:29:39 +01:00
|
|
|
In this directory you will find:
|
|
|
|
* hello-world
|
|
|
|
* isogram
|
|
|
|
* acronym
|