Deque

Deque involves building implementations of a Double Ended Queue (Deque) using both linked lists and arrays.

Overview

Deque involves building implementations of a Double Ended Queue (Deque) using both linked lists and arrays.

Description

  • For detailed project specifications and tasks, please refer to the project documentation
  • In this project, we create two Java files: LinkedListDeque.java and ArrayDeque.java, along with an interface file Deque.java
  • These files contain public methods to implement a deque data structure

Skills

  • Understanding of Linked Lists and Arrays
  • Implementation of Deque Operations
  • Working Collaboratively