Go to file
Krishna Vedala 1e7fc84c3a
added cmake to project euler
2020-04-07 00:12:34 -04:00
.github/workflows update_directory_md.yml: Remove GH Actions workaround 2020-01-27 22:37:32 +01:00
client_server Fix filenames for DIRECTORY.md 2020-01-09 10:27:32 +01:00
computer_oriented_statistical_methods Merge branch 'master' into patch-2 2019-02-11 05:57:57 +05:30
conversions better way to link libraries 2020-04-07 00:00:04 -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@327ddab3e8 updated submodule 2020-04-06 22:22:54 -04:00
hash Merge branch 'master' of github.com:kvedala/C 2020-03-07 10:53:52 -05:00
leetcode Update 38.c 2019-10-31 07:11:22 +03:00
misc +misc/cmake 2020-04-06 23:59:41 -04:00
project_euler added cmake to project euler 2020-04-07 00:12:34 -04:00
searching Fix filenames for DIRECTORY.md 2020-01-09 10:27:32 +01:00
sorting add stats for algo 2 and use milliseconds 2020-04-01 23:48:42 -04:00
.gitignore do not track build folder 2020-04-06 22:38:33 -04:00
.gitmodules added submodule kvedala/function_primer 2020-04-06 22:19:41 -04:00
CMakeLists.txt better way to link libraries 2020-04-07 00:00:04 -04:00
CodingGuidelines.md added code style conventions 2018-03-23 21:47:38 +01:00
DIRECTORY.md updating DIRECTORY.md 2020-04-03 00:17:42 +00:00
LICENSE Create LICENSE 2019-10-03 11:58:25 +08:00
README.md Update README.md 2020-01-09 09:36:32 +01:00

README.md

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.