Answer from cs61c-aj (Kevin Li 15855812) for Question 1
struct node { /*singly-linked list*/
  struct node *next;  /* next node in the list */
  string *string_item; /* The string held in the node */
};
