A project from my python class during my sophomore year. Reads data from local files, performs linear search and quick sort on array of objects, builds balanced binary search tree and searches balanced BST.
CovidProjectOverview.pdf
is the assignment from my professor.
CovidProjectReport.pdf
is my assignment submission.
This project utilizes pipenv
, the package manager. Open a terminal in the project directory and..
- Install pipenv
pip install pipenv
- Start a virtual environment specific to this project
pipenv shell
- Install all packages from pipfile to the virtual environment
pipenv install
Type python main.py
to execute the program.