Problem
1. Write type definitions for the nodes and pointers in a linked list. Call the node type Node Type and call the pointer type Pointer Type. The linked lists will be lists of letters.
2. A linked list is normally referred to via a pointer that points to the first node in the list, but an empty list has no first node. What pointer value is normally used to represent an empty list?