Retrieves the node at the specified index in a doubly linked list.
Optimizes traversal by starting from head or tail based on index position.
head
tail
index
O(min(index, n - index))
O(1)
The type of the list.
The list instance.
The zero-based index of the node to retrieve.
The node at the specified index, or undefined if the index is out of bounds.
undefined
Retrieves the node at the specified index in a doubly linked list.
Optimizes traversal by starting from
head
ortail
based onindex
position.O(min(index, n - index))
- traverses from nearest end.O(1)