top of page

Summary:

Stores user input values in a doubly linked list which can then be printed using a custom iterator.

​

Inputs:

  • 1. Insert - inserts an integer

  • 2. Remove - removes an integer

  • 3. Print Forward - prints using an iterator

  • 4. Print Backwards - prints using reverse iterator

  • 5. Exit - ends the program

  • Hit the play button on top of the window

  • Will use preset list of numbers

Inheritance

Challenge:

  • Allow the user to input data into a doubly linked array

  • Allow manual traversal

  • Create an iterator/reverse iterator for the data structure

​

C++​

Language:

bottom of page