This is an old revision of the document!
Brief overview of today's class:
* talked about arrays and linked lists, singly, doubly, etc. * each item in a list is considered a node * a singly linked list goes in one direction and loops back after the entire list has been run through * the doubly linked list has two pointers that connect two nodes together
Build List for project:
* display * insert * append * obtain * clear * quit