1.Write a program which reads 10 integers from input (one per line). Store these integers in a BOUNDED_QUEUE [INTEGER]. On the next line after the integers, read a character. If the character is
2. Enter your solution to Tutorial Question 3 and get it working. Make sure you understand how and why it uses multiple classes. Discuss this with Andi or Dave if you don't get it.
3. Homework: In lectures this week, we saw how a dynamic stack could be implemented using the NODE class. Based upon this, write a complete class, SIBT_DYNAMIC_QUEUE [G], which will implement a dynamic queue using the NODE class. To make sure this works, instead of using BOUNDED_QUEUE [INTEGER] in Question 1, use SIBT_DYNAMIC_QUEUE [INTEGER]. This should not require any other modification to the code you wrote than changing the ADT. NOTE: This would be a good exam style question for the mid-semester.