I'm working in linked lists in Java, so I'm trying to grasp the concept of a single linked list.
head -> 12 -> 34 -> 56 -> null
head.next would be 12 (also the same as node1). However, what is head then?
Update: What is the difference between a reference and a pointer?
Update2: So if head is 12 and head.next is 34, then doesn't mean this following function skips the first node to see if it's null?
public void add(Object data, int index)
// post: inserts the specified element at the specified position in this list.
{
Node temp = new Node(data);
Node current = head;
// crawl to the requested index or the last element in the list,
// whichever comes first
for(int i = 1; i < index && current.getNext() != null; i++)
{
current = current.getNext();
}
// set the new node's next-node reference to this node's next-node reference
temp.setNext(current.getNext());
// now set this node's next-node reference to the new node
current.setNext(temp);
listCount++;// increment the number of elements variable
}
Source: http://www.mycstutorials.com/articles/data_structures/linkedlists