I need help writing a program using a character Queue. I am using the Queue to determine if the two sequences of characters are the same as each other. Also I have to implement my character Queue as a linked list (using Nodes). Can anyone out there help me write the "Main" part.
Here is my classes
class Queue
{
Node *front;
Node *rear:
}
public:
Queue();
~Queue();
void Make Empty();
void Enqueue(char);
void Dequeue(char&);
bool IsEmpty(); const
bool IsFull(); const
};
struct Node
{
char letter;
Node *nextp;
}