+1 (218) 451-4151
glass
pen
clip
papers
heaphones

Your first task in developing the application for tracking contributors is to load a list…

Your first task in developing the application for tracking contributors is to load a list…

Your first task in developing the application for tracking contributors is to load a list of the people who are helping the cause. Design and develop a linked list, implemented as a stack, to track all of the contributors. You will read the contributor information from a file provided; it is a comma delimited (CSV) file. Your design should include the following:Each contributor will have the following Information:Name: String; //the name of the contributorCity: String; //the city in which the contributor livesCountry: String; //the country in which the contributor livesPhone: String; //the phone number for the contributorContribution: Double; //the amount of the contribution given by the contributor to the zooID: Integer; //identifier key for future needsContributor Functions/Methods:Input constructor: //to accept a string for the name and additional information for each contributor (this should call the Push constructor to implement the stack)Print constructor: //to print out the contributor dataPop constructorPush constructor