Answer from cs61c-cq (Shijie Li 15959617) for Question 1
struct list{
struct list *next;
char *s;
};

