Answer from cs61c-au (Robert Webb 14343043) for Question 1
struct stNode {
  char *st;
  struct stNode *next;
};
