Go to file
Sombit Bose d609e03aea
Merge pull request #544 from TheAlgorithms/revert-542-master
Revert "improved library"
2020-06-08 22:39:30 +05:30
.github/workflows update_directory_md.yml: Remove GH Actions workaround 2020-01-27 22:37:32 +01:00
client_server Remove the white space 2020-04-21 18:36:02 +08:00
computer_oriented_statistical_methods Merge branch 'master' into patch-2 2019-02-11 05:57:57 +05:30
conversions Added octal to decimal 2020-05-02 17:52:26 +01:00
data_structures Merge pull request #538 from shubhamsah/master 2020-05-28 15:12:18 +05:30
exercism make strdup handle string alocation 2020-01-26 07:06:43 -08:00
greedy_approach added file for djikstars's in /greedy_approach 2020-02-02 21:30:50 +05:30
hash Fixed CRC-32 Error 2019-10-14 17:49:03 +02:00
leetcode Update 38.c 2019-10-31 07:11:22 +03:00
misc Modified code of misc/Factorial.c to accomodate larger numbers. 2020-05-20 15:40:14 +05:30
numerical_methods Gist to run and test the Durand-Kerner Algorithm online and view the roots convergence 2020-04-23 19:37:16 -04:00
project_euler Merge branch 'project_euler/problem_16' into project_euler/master 2020-03-30 15:49:17 -04:00
searching Fix filenames for DIRECTORY.md 2020-01-09 10:27:32 +01:00
sorting Revert "improved library" 2020-06-08 22:36:04 +05:30
.gitignore ignore EXE files and vscode settings 2020-03-29 23:22:57 -04:00
.travis.yml Create .travis.yml 2020-05-05 09:56:03 +08:00
872.c Create 872.c 2019-12-29 14:45:24 +02:00
CodingGuidelines.md added code style conventions 2018-03-23 21:47:38 +01:00
DIRECTORY.md updating DIRECTORY.md 2020-05-28 09:44:00 +00:00
LICENSE Create LICENSE 2019-10-03 11:58:25 +08:00
README.md Merge pull request #524 from kvedala/numerical-methods 2020-05-25 12:36:09 +08:00

README.md

Build Status
C

For a full list of all algorithms, please see: DIRECTORY.md

All the code can be executed and tested online: using Google Colab Notebook

LeetCode Algorithm

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
- hexa_to_octal

Data Structures

- stack
- queue
- dictionary
- linked_list
	- singly_link_list_deletion
	- stack_using_linkedlists
- binary_trees
	- create_node
	- recursive_traversals
- trie
	- trie
- heap
	- min heap
	- max heap 

Searching

- Linear_Search
- Binary_Search
- Other_Binary_Search
- Jump_Search
- Fibonacci_Search
- Interpolation_Search
- Modified_Binary_Search

Sorting

- BinaryInsertionSort
- BubbleSort
- BucketSort
- BogoSort
- comb_sort
- CountingSort
- Cycle Sort
- gnome_sort
- PartitionSort
- ShellSort
- RadixSort
- InsertionSort
- MergeSort
- OtherBubbleSort
- PancakeSort
- QuickSort
- SelectionSort
- ShakerSort
- HeapSort
- StoogeSort

Hashing

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

Misc

- ArmstrongNumber	
- Binning
- Factorial
- Fibonacci
- Greatest Common Divisor	
- isArmstrong
- LongestSubSequence
- palindrome
- prime factorization	
- QUARTILE
- rselect
- strongNumber
- TowerOfHanoi
- Greatest Common Divisor
- Sudoku Solver
- prime factorization
- PID Controller

Project Euler

- Problem 1
- Problem 2
- Problem 3
- Problem 4
- Problem 5
- Problem 6
- Problem 7

exercism

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

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

Simple Client Server Implementation

This directory contains

  • client.c
  • server.c

First execute server.c in a terminal and then client.c in a different terminal. Enables communication between two terminals.