class Node
{
    private int data;
    private Node next;
    ...
}
