ArrayDeque
- The ArrayDeque class is the resizable array implementation of the Deque interface.
- ArrayDeque is more efficient than the LinkedList for add and remove operation at both ends.
- The basic insertion, removal and retieval operations in the Deque interface: addFirst, addLast, removeFirst, removeLast, getFirst and getLast.
Semantic portal