Objectives: Implement a program using the stack and queue operations. Description Write a stack and queue test driver. A test driver is a program created to test functions that are to be placed in a library. Its primary purpose is to completely test functions; therefore, it has no application use. The functions to be tested are push stack, pop stack, enqueue, and dequeue. You may include other stack and queue functions as required. All data should be integers. You need two stacks and two queues in the program, as described below. a. Input stack: used to store all user input b. Input queue: used to store all user input c. Output stack: used to store data deleted from input queue d. Output queue: used to store data deleted from input stack Use a menu-driven user interface that prompts the user to select either insert or delete. If an insert is requested, the system should prompt the user for the integer to be inserted. The data are then inserted into the input stack and input queue. If a delete is requested, the data are deleted from both structures: the data popped from the input stack are enqueued in the output queue, and the data dequeued from the input queue are pushed into the output stack. Processing continues until the input structures are empty. At this point print the contents of the output stack while deleting all of its data. Label this output "Output Stack", then print all of the data in the output queue while deleting all of its data. Label this output "Output Queue." Sample Output if Applicable Remarks Project name: TestStackQueue Filenames: stackqueue.h, stackqueue.c, main.c

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Code in C Program Write a stack and queue test driver. (more details in the pic below)
Objectives:
Implement a program using the stack and queue operations.
Description
Write a stack and queue test driver. A test driver is a program created to test functions that are
to be placed in a library. Its primary purpose is to completely test functions; therefore, it has no
application use. The functions to be tested are push stack, pop stack, enqueue, and dequeue.
You may include other stack and queue functions as required. All data should be integers. You
need two stacks and two queues in the program, as described below.
a. Input stack: used to store all user input
b. Input queue: used to store all user input
c. Output stack: used to store data deleted from input queue
d. Output queue: used to store data deleted from input stack
Use a menu-driven user interface that prompts the user to select either insert or delete. If an
insert is requested, the system should prompt the user for the integer to be inserted. The data
are then inserted into the input stack and input queue. If a delete is requested, the data are
deleted from both structures: the data popped from the input stack are enqueued in the output
queue, and the data dequeued from the input queue are pushed into the output stack.
Processing continues until the input structures are empty. At this point print the contents of the
output stack while deleting all of its data. Label this output "Output Stack", then print all of the
data in the output queue while deleting all of its data. Label this output "Output Queue."
Sample Output if Applicable
Remarks
Project name: TestStackQueue
Filenames: stackqueue.h, stackqueue.c, main.c
Transcribed Image Text:Objectives: Implement a program using the stack and queue operations. Description Write a stack and queue test driver. A test driver is a program created to test functions that are to be placed in a library. Its primary purpose is to completely test functions; therefore, it has no application use. The functions to be tested are push stack, pop stack, enqueue, and dequeue. You may include other stack and queue functions as required. All data should be integers. You need two stacks and two queues in the program, as described below. a. Input stack: used to store all user input b. Input queue: used to store all user input c. Output stack: used to store data deleted from input queue d. Output queue: used to store data deleted from input stack Use a menu-driven user interface that prompts the user to select either insert or delete. If an insert is requested, the system should prompt the user for the integer to be inserted. The data are then inserted into the input stack and input queue. If a delete is requested, the data are deleted from both structures: the data popped from the input stack are enqueued in the output queue, and the data dequeued from the input queue are pushed into the output stack. Processing continues until the input structures are empty. At this point print the contents of the output stack while deleting all of its data. Label this output "Output Stack", then print all of the data in the output queue while deleting all of its data. Label this output "Output Queue." Sample Output if Applicable Remarks Project name: TestStackQueue Filenames: stackqueue.h, stackqueue.c, main.c
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Stack
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education