CS225 final project K-Team
Chang Hun Park (chp2), Fiona Seo (seungyi3), Dawn Lim (dahyunl2), Chae Hoon Kim (chk2),
setting directory : /workspaces/cs225/225_project/CS225-KTeam/build
Presentation video link: https://youtu.be/u_9_AkWHw_s
In our Github, there are 7 folders; build, data, documents, entry, feedback, src, and tests.
build folder: This folder is for make. There are CmakeFiles, MakeFile, and automatically made files by executing make.
data folder: This folder is for storing data we use for parsing. There are airports.dat (containing information of airports such as name and id) and routs.dat (containing the relationship between airports)
documents folder: This folder contains the documents and submissions. finalPresentation.md (youtube link to video and google slide lilnk to the slides), results.md (written report), teamcontract.md, proposal.md
entry folder: This folder contains main.
feedback folder: This folder was meant to store the feedback from TA but was not used.
src folder: This folder has all the code we wrote. Flight, airport, graph, BFS, dijkstra, pageRank (.h and .cpp for all of these)
tests folder: This folder is for testing the algorithms. Our test cases are in test.cpp and the data made for each test case are stored in this folder.