A double-ended queue or deque is a generalization of a stack and a queue that supports adding and removing items from either the front or the back of the data structure.   This assignment has two parts:   Part-1 Create a doubly linked list based DeQueDLL class that implements the DequeInterface. The class skeleton and interface are provided to you. Implement a String toString () method that creates and returns a string that correctly represents the current deque. Such a method could prove useful for testing and debugging the class and for testing and debugging applications that use the class. Assume each queued element already provides its own reasonable toString method.   Part-2 Create an application program that gives a user the following three options to choose from – insert, delete, and quit. If the user selects ‘insert’, the program should accept the integer input from the user and insert it into the deque in a sorted manner. If the user selects ‘delete’, the program should accept the integer input from the user and delete that integer from the deque. The program should continue to prompt the user for options until the user chooses to quit. Display the contents of deque after each insert/delete operation. You can make the following assumptions: User always tries to insert/delete an integer value only In case of repeated values, delete operation will delete the first occurrence only   Sample execution of code is provided on next page.   Ensure that your program works well by checking it against different test cases. At the minimum, submit three new and different test case reports with your program submission.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 9PE
icon
Related questions
Question

double-ended queue or deque is a generalization of a stack and a queue that supports adding and removing items from either the front or the back of the data structure.

 

This assignment has two parts:

 

Part-1

  1. Create a doubly linked list based DeQueDLL class that implements the DequeInterface. The class skeleton and interface are provided to you.
  2. Implement a String toString () method that creates and returns a string that correctly represents the current deque. Such a method could prove useful for testing and debugging the class and for testing and debugging applications that use the class. Assume each queued element already provides its own reasonable toString method.

 

Part-2

Create an application program that gives a user the following three options to choose from – insert, delete, and quit. If the user selects ‘insert’, the program should accept the integer input from the user and insert it into the deque in a sorted manner. If the user selects ‘delete’, the program should accept the integer input from the user and delete that integer from the deque. The program should continue to prompt the user for options until the user chooses to quit. Display the contents of deque after each insert/delete operation. You can make the following assumptions:

  • User always tries to insert/delete an integer value only
  • In case of repeated values, delete operation will delete the first occurrence only

 

Sample execution of code is provided on next page.

 

Ensure that your program works well by checking it against different test cases. At the minimum, submit three new and different test case reports with your program submission.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Operations of Linked List
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning