Answer from cs61c-ap (Nicole Rungsitiyakorn 13543412) for Question 1
struct dlist {
    char *s;            /* charater string */
    struct dlist *next;  /* pointer to next string */
};
