Matthew Romero Homework 1 Answer the following questions: If you were to design a system for the registrar office using C/JAVA, will you be creating a new data structure? Yes What will be the basic operators of the new data structure that you will need to develop? What will be the function of each basic operator? I will need to have a Insert so i could put each person into that data structure, that means the array of data structures will need to be very large. I will need to be able to Delete a person, for in case a person withdraws from the university. I would use a Modify operator to easily change information of a person if needed. I will need a Search so I could find a person easy perhaps by having a “key” for each person such as a Social security number . I will also need a Create to create a new data structure to add a new person in the array of data structures. How long (hours, days, weeks, months) do you think that you will be able to implement the basic operators of your new data structure? I think this would take at most a few days, but could be done in as quick as a few hours. Depending on how neat it was and if it were in C or Java.