Please help me i am stuck : Make stack data structure using link list without using( struck)(C++)
Write a C++ program to implement stack data structure using link list data structure. The required program needs to fulfill the following requirements. 1. Create a node(student) class to save the information(name and marks) of a student. 2. Create one or multiple stacks to save students, data into stack(s). Use linked list data structure for the implementation of stack. Take the choice operation from the user and perform the following task 1. To add a student in stack. 2. To remove a student from stack. 3. Display all students of stack. 4. Display top 3 position of students ( Descending order) 5. Press 5 or any other key to close the program. Note : only classes Student(Node) and stack are allowed. Importantly do not use struct for node. https://code.sololearn.com/cEfWnXwWfo03/?ref=app https://code.sololearn.com/cEfWnXwWfo03/?ref=app I tried to do it own my own but it is causing errors I will be very grateful if some can either solve it or tell me my mistakes. God bless you. Have a nice day.