[Solved] How does a linked list with Node class work in C++?
A nice tutorial is at: http://www.zentut.com/c-tutorial/c-linked-list/ From a programming perspective, normally your LinkedList class would have some methods to do the things you asked about, for example: Add – create a new entry at the end of the linked list InsertAfter(Node *n) – create a new entry after indicated node in the listed list Remove(Node … Read more