Answer from cs61c-cg (Daniel Lau 16776873) for Question 1
typedef struct node
{
  char *str;
  struct node *link;
}NODE;
