CSC300 / CSC402: [1/1] Previous pageContents

Some links on studying and practicing:

Review Homework 1, Quiz 1

Data structures

Here is an ascii art linked list:

          Node         Node        Node         Node         Node
         +----+       +----+      +----+       +----+       +----+
         | 11 |       | 21 |      | 31 |       | 41 |       | 51 |
first -->|  --|------>|  --|----->|  --|------>|  --|------>|null|
         +----+       +----+      +----+       +----+       +----+

Previous pageContents