Objectives : Linked List - Built in

  • be able to use built in linked list class
  • to understand what kinds of problems require dynamic memory manipulation
  • to be able to add maintain a list by adding and deleting items
  • to be able to maintain an ordered list
  • understand the difference between the address of a memory location and the value stored at that location
  • understand the costs and benefits of a linked list
  • be able to use the iterator for the linked list class
  • be able to use getFirst(), getLast(), removeFirst(), removeLast(), add(obj), addFirst(obj), addLast(obj)
HOME