this lab is contributed by Alberto Reyes in S16
Objective:
Implementing Queue and Stack with array
Overview:
Implementing your own Stack and Queue (DO NOT USE STL)
Implement a program that reads in a file and check whether each line is a palindrome
Your code MUST have at least one stack and one queue
Ignore spaces/upper lower case/non-alpha characters, e.g Taco Cat is a palindrome
Your console output should look something like this:
Taco Cat
Yes
Use the test file palindrome.txt in the attachment as your input and output your palindrome test program to the console
In your submission, include all files used along with the console output included as a comment in your main or as images.