Group members: Arthur Gao, Anthony Mena, Michael Lo, Adrian Carrillo
Arthur's COVID-19 lab involvement brings up the pressing concern of who warrants vaccination before others. We created this Distribution program to determine, based on three factors, who should receive the vaccination.
- C/C++
- CMake
- googletest
The input is people who will be vaccinated for COVID-19. The output is the person who's next in line for the vaccine.
-
The Composite design pattern will be implemented as a DistributionList class, that aggregates People objects. The DistributionList class will maintain the list data structure that holds the People objects.
-
The Strategy design pattern will be implemented as a class that orders the DistributionList according to the desired characteristic. People will be moved around the list according to age, current condition, or number of vaccinations received. There will be Strategy classes that order the list for vaccination according to the age, current condition, or number of vaccinations received. Effectively, the top person of the list will be the next in line for the vaccine.