Site Search:

LNode.java


public class LNode<E> {
    LNode<E> next;
    E value;
    public LNode(E value, LNode<E> next) {
        this.value = value;
        this.next = next;
    }
}