Thread
:
Help with Linked List Project!
View Single Post
•
•
Join Date: Jan 2008
Posts: 3,829
Reputation:
Solved Threads: 501
VernonDozier
Offline
Senior Poster
Re: Help with Linked List Project!
0
#
3
Jul 3rd, 2008
Revision 2 (sorry):
StudentNode would contain these attributes:
Help with Code Tags
C++ Syntax
(
Toggle Plain Text
)
Student* student;
StudentNode* next;
// not Student* next;
Student* student; StudentNode* next; // not Student* next;
You could also make student type Student rather than type Student*. I've used both. Depends on your needs.
VernonDozier
View Public Profile
Find all posts by VernonDozier