A Students Enrollment system using a Finite Set data structure represented as an Array.
Students Enroller (Array Version) is a C++ program that allows the user to enroll students, remove students, or print students’ information using a Finite Set data structure (represented as an array). This program is made-from-scratch and does not utilize the C++ Standard Template Library (STL).
- students> add Bugs Bunny 3229 Junior Business
- students> add Donald Duck 230 Junior ComputerScience
- students> remove 123
- false
- students> remove 230
- true
- students> print firstname
- Bugs-Donald
- students> print major
- Business-ComputerScience