Answer from cs61c-cp (Raymond Chou 16078389) for Question 1
struct node {
string item;
string node *next;
};
