class Node {
    Object data;
    Node next; // may be null
}
