#include using namespace std; struct Node { char data; struct Node *next; }; int *first = NULL; //Global pointer void create(char states[]