Package Struct

Class ListNode<T>

java.lang.Object
Struct.ListNode<T>
Type Parameters:
T - The type of the value stored in each node.

public class ListNode<T> extends Object
Represents a node in a doubly linked list, which can be navigated in both directions: forward and backward. Each node contains a value and links to the previous and next nodes in the list.
Since:
1.0
Version:
1.0
Author:
Sahasrad Chippa