Go to file
Christian Bender b2050f3618 added code style conventions 2018-03-23 21:47:38 +01:00
Computer Oriented Statistical Methods Add files via upload 2018-02-02 15:55:36 +01:00
Conversions Array Data Structure 2018-03-19 20:09:22 -03:00
Data Structures Merge pull request #124 from LeoVen/master 2018-03-20 16:12:53 +01:00
Hash Add files via upload 2017-12-31 22:58:30 +01:00
Project Euler solving Project Euler Problem03 about prime 2017-12-04 15:27:24 +09:00
Searches Delete fibonacciSearch 2018-03-20 16:42:31 +01:00
Sorts sorting of linked list using selection sort 2018-02-04 18:26:36 +05:30
computer-oriented-statistical-methods Directories Updated 2017-10-03 16:14:38 +05:30
conversions fixed a bug and refactoring 2018-03-18 23:42:43 +01:00
data_structures small changes and some comments 2018-03-18 21:49:50 +01:00
exercism Add files via upload 2018-01-26 19:38:12 +01:00
misc Delete demonetization.o 2018-03-23 21:35:46 +01:00
sorting changed the code a little bit 2018-03-20 15:06:16 +01:00
CodingGuidelines.md added code style conventions 2018-03-23 21:47:38 +01:00
README.md Update README.md 2018-03-24 00:03:48 +05:30

README.md

C

Computer Oriented Statistical Methods

- Gauss_Elimination
- Lagrange_Theorem
- Mean
- Median
- Seidal
- Simpson's_1-3rd_rule.c
- Variance
- statistic (C Lib)

Conversions

- binary_to_decimal
- decimal _to_binary
- decimal_to_hexa
- decimal_to_octal
- to_decimal

Data Structures

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

Searching

- Binary_Search
- Other_Binary_Search
- Jump_Search

Sorting

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

Hashing

- sdbm
- djb2
- xor8 (8 bit)
- adler_32 (32 bit)

Misc

- Binning
- Factorial
- Fibonacci
- isArmstrong
- LongestSubSequence
- palindrome
- QUARTILE
- rselect
- strongNumber
- TowerOfHanoi
- Greatest Common Divisor
- Sudoku Solver

exercism

In this directory you will find (in the right order):

  • hello-world
  • isogram
  • acronym
  • word-count
  • rna-transcription