A simple shortest path implementation for a pizza delivery company
Some Basic Things:
- Source for the final application goes into
src/ - Documentation and notes go into
docs/ - Source and headers for things that are used in the application but can also be used as standalone libraries for other things go into
lib/such as theGraph classfiles - Try writing a test for each unit you make. Comes in handy while testing in the end. These go in
tests/ - The final executable goes into
bin/ - Make a separate
build/directory where you compile your stuff. Make sure it is not transported with the rest of the code.