Algorithms and Data Structure - Proclub/Knowledge-Repo GitHub Wiki
Mathematics:
- Prime Checker
- Prime: Sieve of Eratosthenes
- [Prime: Prime Factor] (http://dbcooper22.wordpress.com/2014/01/27/prime-prime-factor/)
- [Exponentiation : Divide and Conquer O(log N)] (http://dbcooper22.wordpress.com/2014/01/30/exponentiation-divide-and-conquer/)
- [Exponentiation: another O(log N)] (http://dbcooper22.wordpress.com/2014/01/30/exponentiation-another-log-n/)
Data Structure
- List
- Queue
- Stack
- Heap
- Binary Tree
- Red Black Tree
- ....
Dynamic Programming :
- Knapsack
- Longest Common Subsequence (LCS)
- Longest Increasing Subsequence (LIS)
- ....
Divide and Conquer :
- Binary Search
- Bisection Method
- ....
Complete Search :
- Recursive Backtracking
- .......
Graph :
- Complete Search :
- Recursive Backtracking
- Floyd Warshall
- .......