This repository contains my implementations of some problems, algorithms and programming challenges.
The language I implement them in is dependent on my mood... ๐
| Problems | Filename | Reference |
|---|---|---|
| Breadth-First Search | bfs.cpp | CLRS |
| Depth-First Search | dfs.cpp | CLRS |
| Binary Search | bin_search.cpp | CLRS |
| Merge Sort | merge_sort.cpp | CLRS |
| Quick Sort | quick_sort.cpp | CLRS |
| Knuth-Morris-Pratt | kmp.cpp | CLRS, pg 1005-1006 |
| Producer Consumer | producer_consumer.cpp | |
| Dining Philosophers | the_dining_philosophers.cpp |
Total: 73