Brayden M. Kirkland

Logo

CSCI 496: Senior Portfolio
In partial fulfillment of the requirements for the degree of Bachelor of Arts in Applied Computing (class of 2026)

View My Resume

View My GitHub Profile

Back to Portfolio

File Helper

Project description

The File Helper project is a program that maps integer IDs with a set of first names and last names. This map is designed to be used to store and access the collected data in a quick and efficient manner. This project includes the ability to manipulate stored data by way of addition of new data, and the removal of existing data.

How to compile and run the program

The program’s UI is limited to command-line interface, with little user interactivity. A makefile is included in the implementation of this project, which only requires the command “make” to compile the program. To run, use the command “make run”, which also compiles the program again before running, if necessary.

make
make run

UI Design

The program’s main function is to iterate through given text files and map each given first and last name to an integer id for easy storage and access.

3. Additional Considerations

The program is not inherently designed to accept user input, but can be adjusted to do so.

For more details see GitHub Flavored Markdown.

Back to Portfolio