// File: Node.h // Node class with useful constructor class node { public: int data; node* next; // Constructor node(int info = 0, node* link = NULL ) : data(info), next(link) {}; };