Addressnode

Create a structure called AddressNode
The structure should contain a string for name and a pointer called AddressNode that points to “next” (the next element in the list).
10
Create classed called ABook.
Create the Default Constructure. (public)
Create the Deconstructor. (public)
AddressNode* topPtr. (private) – Should be a pointer to the top of the list.
10
ABook Methods (each of these methods must be created in your program)
ABook::ABook() – Default Constructor
ABook::Insert(string N…

Leave a Reply

Your email address will not be published. Required fields are marked *