#include using namespace std; class Node { private: char item; Node *next; public: Node(); Node(char); char get_item(); Node *get_next(); void set_next(Node *); void display(); };