Question: DSA C++ Q 1: You need to create code in C++ for Student Information System. It will be a simple system with the functionality of

DSA C++ Q 1: You need to create code in C++ for Student Information System. It will be a simple system with the functionality of add record, search record, Update record and delete record using linked list.

The Project has 5 major functions.

  1. Add New record (user can add in the mid, beginning and at the end of the list and after that list should be sorted)
  2. Search a record
  3. Modify already existing record
  4. Delete a record (user can delete from the end, mid and beginning of the list and after that list should be sorted)
  5. Exit

Q2: Stack stores elements in an ordered list and allows insertions and deletions at one end.

The elements in this stack are stored in an array. If the array is full, the bottom item is dropped from the stack. In practice, this would be equivalent to overwriting that entry in the array. And if top method is called then it should return the element that was entered recently.DSA C++ Q 1: You need to create code in C++ for

Q 1: You need to create code in C++ for Student Information System. It will be a simple system with the functionality of add record, search record, Update record and delete record using linked list. The Project has 5 major functions. 1. Add New record (user can add in the mid, beginning and at the end of the list and after that list should be sorted) 2. Search a record 3. Modify already existing record 4. Delete a record (user can delete from the end, mid and beginning of the list and after that list should be sorted) 5. Exit Q2: Stack stores elements in an ordered list and allows insertions and deletions at one end. The elements in this stack are stored in an array. If the array is full, the bottom item is dropped from the stack. In practice, this would be equivalent to overwriting that entry in the array. And if top method is called then it should return the element that was entered recently

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!