Ask your own question, for FREE!
Computer Science 17 Online
OpenStudy (anonymous):

public class LinkedList{ private class Node{ private Object data; private Node next; public Node(Object data){ this.data = data; next = null } } private Node head; public LinkedList(){ head = null; } public void add(Object data){ Node n = new Node(data); n.next = head; head = n; } Can anyone explain linked list? from above code, what would n.next = head exactly do? It seems to me that n is pointing to head and the next line is making head pointing to n. So they are pointing at each other?

OpenStudy (anonymous):

|dw:1349906631609:dw| this is how I see it but n.next should point to null not head correct? would setting = head make n.next point to null?

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
Mari103: How to pop out like a Jacc In the box
46 minutes ago 0 Replies 0 Medals
Breathless: Spooky witch but cute
7 hours ago 3 Replies 0 Medals
Arriyanalol: help
7 hours ago 10 Replies 2 Medals
Arriyanalol: @tinydinoUwU stop trying to find a argument u blad lil boy
1 day ago 5 Replies 4 Medals
Jaded012023: Please tell me what you all think of this song
10 hours ago 6 Replies 1 Medal
Arriyanalol: bro how
10 hours ago 2 Replies 3 Medals
Arriyanalol: cant wait for the new bluey movie in 2027
1 day ago 12 Replies 2 Medals
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!