CIS-255 Home: http://www.c-jump.com/bcc/c255c/c255syllabus.htm

Linked Data Structures


  1. Linked Lists
  2. Linked List Concepts
  3. Linked List Design Models
  4. C-style Linked List Example
  5. C++ Node class for singly-linked list
  6. The Node class constructor
  7. Inserting a node into a singly-linked list
  8. Removing a node from the list
  9. List size and distance between the nodes
  10. Print contents of the list
  11. Node copy constructor
  12. The STL list class
  13. Types of linked lists
  14. Circularly-linked list
  15. Other data structures
  16. Linked lists vs. arrays
  17. Doubly-linked vs. singly-linked
  18. Program Design Considerations