Go to file
akshayanvi 8d240037b3
Update interpolation_search.c
1) Easy logic built
2) error minimized: as array is increasing in above example it might not always be increasing.just replace 47 by 2 then run above program it will give an incorrect ans. but in improvised case it is minimized.
3)we are scanning input from user so, more saturated
4)'position' is more reliable than 'index'.
2018-03-14 03:08:07 +05:30
Computer Oriented Statistical Methods Add files via upload 2018-02-02 15:55:36 +01:00
computer-oriented-statistical-methods Directories Updated 2017-10-03 16:14:38 +05:30
conversions added binary to hexadecimal conversion 2018-01-28 18:45:09 +05:30
Conversions decimal to binary without function use 2018-01-28 23:31:36 +05:30
Data Structures Update balanced parenthesis using stack in C 2018-03-11 22:48:53 +05:30
data_structures Merge pull request #71 from arpanjain97/master 2018-01-15 15:45:35 +01:00
exercism Add files via upload 2018-01-26 19:38:12 +01:00
Hash Add files via upload 2017-12-31 22:58:30 +01:00
misc Update mirror 2018-01-31 05:06:06 +01:00
Project Euler solving Project Euler Problem03 about prime 2017-12-04 15:27:24 +09:00
Searches Update interpolation_search.c 2018-03-14 03:08:07 +05:30
sorting Merge pull request #72 from MacBox7/bucket-sort 2018-01-15 15:45:06 +01:00
Sorts sorting of linked list using selection sort 2018-02-04 18:26:36 +05:30
README.md Update README.md 2018-02-02 15:54:31 +01:00

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

exercism

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

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