Go to file
Krishna Vedala 1d8d07efc9
gets not a C11 standard, superceded by fgets
2020-04-08 09:45:12 -04:00
.github/workflows checkout submodule as well 2020-04-07 22:18:08 -04:00
client_server code cleanup to prevent gcc warnings 2020-04-08 09:41:12 -04:00
computer_oriented_statistical_methods removed dependency on "conio.h" 2020-04-07 19:31:29 -04:00
conversions gets not a C11 standard, superceded by fgets 2020-04-08 09:45:12 -04:00
data_structures Fix filenames for DIRECTORY.md 2020-01-09 10:27:32 +01:00
exercism Fix filenames for DIRECTORY.md 2020-01-09 10:27:32 +01:00
function_timer@e0dc782b7b updated submodule commit 2020-04-07 18:08:42 -04:00
hash added stdint.h for integer length typedefs 2020-04-03 08:10:28 -04:00
leetcode Update 38.c 2019-10-31 07:11:22 +03:00
misc code cleanup to prevent gcc warnings 2020-04-08 09:41:12 -04:00
project_euler code cleanup to prevent gcc warnings 2020-04-08 09:41:12 -04:00
searching code cleanup to prevent gcc warnings 2020-04-08 09:41:12 -04:00
sorting code cleanup to prevent gcc warnings 2020-04-08 09:41:12 -04:00
.gitignore ignore build folder 2020-04-07 09:36:29 -04:00
.gitmodules use https for submodule 2020-04-07 00:33:46 -04:00
.travis.yml added travis CI 2020-04-07 00:28:15 -04:00
CMakeLists.txt bump cmake_c_standard to C11 2020-04-08 09:30:46 -04:00
CodingGuidelines.md added code style conventions 2018-03-23 21:47:38 +01:00
DIRECTORY.md updating DIRECTORY.md 2020-04-08 01:26:11 +00:00
LICENSE Create LICENSE 2019-10-03 11:58:25 +08:00
README.md added build status badge 2020-04-07 00:45:55 -04:00

README.md

Build Status C

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

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

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.