1234567
struct Node { int data; Node * moredata; Node * next; Node (int d):data(d), moredata(NULL), next(NULL){} }