Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 729 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 729 Bytes

Algorithms - A project for learning algorithms

Algorithms is a project for learning algorithms. It is initially implemented in C++, but may include other languages in the future.

It is very primitive at the moment and there are things such as testing and benchmarking that would add to this project. However, there is enough code to start implementing other algorithms.

Implementation Notes

Array of pointers was chosen in main.cpp for sorting algorithms instead of using standard library data structures to keep the algorithms lightweight and to provide a reminder on how pointers work.

Running

As simple as:

make
./algorithms