So it's an array of linked list pointers.

Code:
struct llTag {
  int payload;
  struct llTag *next;
};

struct llTag *adjacency[7] = { 0 };