View Single Post
Join Date: Jan 2008
Posts: 3,829
Reputation: VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute 
Solved Threads: 501
Featured Poster
VernonDozier VernonDozier is offline Offline
Senior Poster

Re: Help with Linked List Project!

 
0
  #3
Jul 3rd, 2008
Revision 2 (sorry):

StudentNode would contain these attributes:

  1. Student* student;
  2. StudentNode* next; // not Student* next;

You could also make student type Student rather than type Student*. I've used both. Depends on your needs.
Reply With Quote