#ifndef __NODE_H__ #define __NODE_H__ #include using namespace std; class node { public: node(const int, node*); int id; node* next; }; #endif