-
Notifications
You must be signed in to change notification settings - Fork 0
Home
BrandonRobare edited this page Jun 2, 2026
·
1 revision
This wiki documents two labs from Computer Science I (CS13001) at Kent State, Fall 2022. The work is intro level and stands as I submitted it.
- Maze Game: generation, movement, and the win check.
- Collection Class: the dynamic-array container and its copy control.
- Roadmap: known issues and follow-ups.
Each lab came with a header file and class interfaces written by the course instructor, Mikhail Nesterenko. I wrote the member function definitions and the programs that drive them. The dates in the file comments are the days I submitted each lab.
You need a compiler with C++11 support.
g++ -std=c++11 maze/*.cpp -o maze
g++ -std=c++11 collection/*.cpp -o collectionThis project uses the MIT License. The full text lives in LICENSE at the repo root. In short, you can reuse the code with attribution and without warranty.