Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Pseudocode also needed and time complexity for each operation. Implement pseodocode in the template in stackQueue.h Explain the design choices as well. Coding exercise In
Pseudocode also needed and time complexity for each operation.
Implement pseodocode in the template in stackQueue.h
Explain the design choices as well.
Coding exercise In this exercise, you will implement a queue using two stacks Create a template called template typename elemType> class stackQueue( 1); in a file called stackQueue.h with two fields of type stack (you can use the STL stack here. If you want to use your own implementation, that is fine too). Other fields should not store queue elements. Note that the stacks can only support push and pop operations to add/remove items from the data structure. You may use auxiliary data structures within the member functions. The template should support the following functionality: 1. 2. a. void enqueue (elemType element) - insert an element at the back of the queue b. elemType dequeue-remove the element from the front of the queue and return the value c. elemType front () -return the value at the front of the queue. Do not delete it. d. int size () - returns the size of the queue e. bool isEmpty )-returns true if queue is empty, false if not f. bool isFull )- returns true if queue is full, false if not (Does this ever return true?) Write the pseudocode and the time complexity in big-O notation for each of the above operations in a file called stackQueue.pdf. Please explain your design choices as well. 3. 4. Implement the pseudocode in the template in stackQueue.h. 5. Test your code using main.cpp. A sample main.cpp is provided to you. You are required to edit it and test for other cases as well
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started