Insertion or deletion of an element at a specific point of a list, assuming that we have a pointer to the node already, is a constant-time operation. - from the Wikipedia Article on Linked list
Linked list traversal in a single linked list always starts from the head. We have to keep going till we satisfy a given condition.
So that will make any operation worst case O(n) unless we are dealing with the head node.
We CANNOT DIRECTLY go to a given pointer in a linked list. So why is it said that it is a constant time operation?
EDIT: Even if we have a pointer to the node, we have to start from the head only right? So how is it constant time operation
LinkedListimplements a single linked list is wrong: it's a doubly-linked list. – Joachim Sauer Apr 20 '11 at 16:22LinkedListimplements a doubly-linked list. So not everything that applies to "a linked list" as you defined it "in computer science" necessarily applies toLinkedListin Java. – Joachim Sauer Apr 20 '11 at 16:48