#ifndef NODE_H #define NODE_H struct Node { int data; Node* _next; }; #endif // !NODE_H