Site Search:

LNode.java


public class LNode {
    int value;
    LNode next;
    public LNode(int value, LNode next) {
        this.value = value;
        this.next = next;
    }
}