× Didn't find what you were looking for? Ask a question
Top Posters
Since Sunday
L
3
d
3
y
3
a
3
n
3
d
3
e
3
d
3
c
3
p
3
M
3
a
3
New Topic  
Stromile Stromile
wrote...
Posts: 299
Rep: 0 0
6 years ago
A linked list that stores int values would be comprised of a group of Nodes.  We might define the Node by
a.   class Node
{
   Node next;

b.   class Node
{
   int next;
}
c.   class Node
{
   int data;
}
d.   class Node
{
   int  data;
   Node next;
}
e.   class Node
{
   int[ ] data;
   Node next;
}
Read 74 times
2 Replies
Replies
Answer verified by a subject expert
se7ense7en
wrote...
Posts: 327
Rep: 0 0
6 years ago
Sign in or Sign up in seconds to unlock everything for free
1

Related Topics

wrote...
4 years ago
ty
New Topic      
Explore
Post your homework questions and get free online help from our incredible volunteers
  1011 People Browsing
Related Images
  
 85
  
 793
  
 196
Your Opinion