Difference between blocking deque vs linked blocking deque

Viewed 32

What is the difference between the two in Java? Is it just that blocking deque uses an array and linked blocking deque uses a linked list? I want to know this so that I can make a decision about which data structure I want to use for my audio track queue.

1 Answers
Related