Randall Waldrep's Project Page!



Description of Final Draft:
This program is intended to manage a list of students. It uses coding for linked lists to allow the user to add an arbitrary number of students into the database. The user can also drop students from the database, search for students using the student ID number, add and remove grad students, and assign grades to all students in the database.

The only bugs I am aware of is caused by a user entering a char string instead of a number at the ID number prompts. This will cause the program to crash. Other than that, I have done my best to make the program "idiot proof"

The files below should be compiled on a UNIX system. The command for compiling is as
follows:

g++ main1.cpp Name.cpp Student.cpp

The files you will need are as follows:

(When using Netscape, hold down the shift key when clicking on these to download them)

List.h
main1.cpp
Name.cpp
Name.h
Student.cpp
Student.h