Data Structure - Assignment 4: Linked List, Queues, and Stacks
- Create
a SinglyLinkedList. Using the instructions given in SinglyLinkedList class
exercise.
- In
the same project, create a DoublyLinkedList. Using the instructions given
in DoublyLinkedList class exercise.
- Modify
DoublyLinkedList class to implement ICollection Interface
- Modify
DoublyLinkedList class to implement IEnumerable interface
- Add
a class called Queue that adapts the DoublyLinkedList.
- Add
a class called Stack that adapts the DoublyLinkedList.
- Test and submit your solution.
Comments
Post a Comment