C语言算法大全
Go to file
RJ Trujillo d9b9bbd4f5 leetcode: Address readability of a few cases, and fix 283
The for loop utilized in 283 was improperly structured as 'start'
was no declared as the value to index.

Also, make the other cases more readable.

Signed-off-by: RJ Trujillo <certifiedblyndguy@gmail.com>
2019-10-04 17:24:30 -06:00
computer_oriented_statistical_methods Merge branch 'master' into patch-2 2019-02-11 05:57:57 +05:30
conversions Delete a.out 2019-06-12 18:25:33 +05:30
data_structures Merge pull request #267 from PalAditya/master 2019-10-02 22:58:17 +08:00
exercism Added NULL check. 2018-07-24 13:38:45 -05:00
hash Refactor 2018-10-08 21:18:35 +05:30
leetcode leetcode: Address readability of a few cases, and fix 283 2019-10-04 17:24:30 -06:00
misc Merge pull request #287 from moinak878/Fibonacci-using-DP 2019-10-02 00:12:30 +08:00
project_euler Project Euler Solution 2019-10-01 19:51:55 +05:30
searching Update LinearSearch.c 2019-10-03 09:04:29 +05:30
Simple Client Server Added unistd.h header file to remove compilation errors 2019-02-18 12:03:50 +05:30
sorting Added multikey quicksort 2019-10-03 17:04:48 +10:00
.gitignore Add .gitignore file 2019-07-02 15:57:46 -07:00
CodingGuidelines.md added code style conventions 2018-03-23 21:47:38 +01:00
LICENSE Create LICENSE 2019-10-03 11:58:25 +08:00
README.md README updated 2019-10-01 20:51:34 +05:30

C

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

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
- gnome_sort
- PartitionSort
- ShellSort
- RadixSort
- InsertionSort
- MergeSort
- OtherBubbleSort
- QuickSort
- SelectionSort
- ShakerSort
- 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
- prime factorization

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.