Week 5
Quiz
· doubly linked lists
· used for easy insertion
· backwards and forwards traversal
· methods
· insert at head, tail
· traverse
· find
· insert
· remove
· arrays vs. linked lists vs. doubly linked lists
· frequent random access – arrays
· operations at the cursor – lists
· forwards and backwards traversal – doubly linked
· frequent insertions at cursor – doubly linked
· high reliability / fault tolerant systems, audits, - doubly linked
· frequent capacity changes – lists
In Lab:
· Continue with linked list assignment