Linked List EINLEITUNG
public class Node {
int data;
Node next; // reference to next object in the sequence
}
Exuberant Echidna
public class Node {
int data;
Node next; // reference to next object in the sequence
}