Thanks to visit codestin.com
Credit goes to github.com

Skip to content

MatthewC221/Algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

192 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Algorithm implementation

Interesting algorithms or interesting implementations of algorithms

Dynamic programming (very basic) / Recursion

  • longest_subsequence.py
  • making_change.py
  • subset.py
  • super_digit.py
  • unique_paths.py (similar to chess_board.c!) + unique_paths2.py
  • chess_board.c

Efficiency tests

  • bin_search.py
  • prime.py
  • zero_knowledge.py

Leetcode: many of the small solutions are leetcode now, I just do it for fun mostly.

Famous algorithms: Knuth-Morris-Pratt (KMP.c)

Notable ones: fib.c, chess_board.c, permutations (normal and better), sum_3.py, unique_paths.py + unique_paths2.py, nQueens.py

Rarely included external libs so this below will be fine.

To compile any of the C programs: gcc -o X X.c
To execute python scripts: chmod 755 X.py --> ./X.py

About

General algorithm implementation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors