Question

In Java, which interface defines the basic operations for a queue, and which class is a common concrete implementation that supports these operations with efficient O(1) time complexity for offer and poll?

A List, ArrayList
B Set, HashSet
C Queue, LinkedList
D Deque, ArrayDeque
E Collection, Vector
Practice Next

Hey! Ask a query