Hi guys im trying to write a C++ program to read 510 students’ name and ID and also use a singly linked list to add each node to the bottom of the list. then to also reverse the list after it is created
If any one could help with this it would be great. This is what i have so far
A linked list is a type that consists of nodes.
Each node has data fields and a like to the next node. This link is a pointer. A pointer to a node!
The operations for this are fairly simple. Keep a pointer to the root node, if you lose this, your list is gone.
If you need more help, post what you have so far, ask a more specific question. And most people will be glad to help.