Singly Linked Lists

stack queue hashing chaining

Homogeneous Collection of Nodes

Operations

Initializing heap

  Avail = 1;
  for I = 1 to 499 do
    Node[I]. Next = I + 1;
  Node[500].Next = 0;


Return to CIS 350 Index Page