Go to file
koseokkyu d2b6686d28 Project Euler solving Problem 01 2017-11-27 17:00:21 +09:00
Computer Oriented Statistical Methods Merge pull request #61 from ankitrgadiya/fix/dir 2017-10-24 20:47:07 +05:30
Conversions Updated README.md 2017-10-20 22:03:41 +05:30
Data Structures Updated README.md 2017-10-20 22:03:41 +05:30
Project Euler Project Euler solving Problem 01 2017-11-27 17:00:21 +09:00
Searches add jumpsearch 2017-11-20 11:50:40 +09:00
Sorts modify heapsort 2017-11-24 14:09:36 +09:00
computer-oriented-statistical-methods Directories Updated 2017-10-03 16:14:38 +05:30
conversions Updated README.md 2017-10-20 22:03:41 +05:30
misc Check if a number is prime. 2017-10-19 10:38:10 +02:00
README.md removed redundent 2017-10-26 15:26:00 +05:30

README.md

C

Computer Oriented Statistical Methods

- Gauss_Elimination
- Lagrange_Theorem
- Mean
- Median
- Seidal
- Simpson's_1-3rd_rule.c
- Variance

Conversions

- binary_to_decimal
- decimal _to_binary
- decimal_to_hexa
- decimal_to_octal

Data Structures

- stack
- queue
linked_list
	- singly_link_list_deletion
binary_trees
	- create_node
	- recursive_traversals
trie
	- trie

Searching

- Binary_Search
- Other_Binary_Search

Sorting

- binary_insertion_sort
- BubbleSort
- BogoSort
- InsertionSort
- mergesort
- OtherBubbleSort
- QuickSort
- SelectionSort
- shaker_sort

Misc

- Binning
- Factorial
- Fibonacci
- isArmstrong
- LongestSubSequence
- palindrome
- QUARTILE
- rselect
- strongNumber
- TowerOfHanoi