From b48f4e6ada35dc8bef02bba8f6a731f212f048f5 Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 28 Jan 2020 20:16:29 -0600 Subject: [PATCH] queue interface collections --- study/COLLECTIONS.MD | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/study/COLLECTIONS.MD b/study/COLLECTIONS.MD index 64305f0..6ea2191 100644 --- a/study/COLLECTIONS.MD +++ b/study/COLLECTIONS.MD @@ -109,6 +109,10 @@ list = new Vector(); ### Queue Interface +A Queue implements a basic first-in, first-out (FIFO) order. It is a ordered list (based on the order of insertion, not by 'value') which typically holds items that are in waiting list to be processed. + +Queue interface is implemented by the classes (and interfaces) [PriorityQueue](#priorityqueue-class), [Deque](#deque-interface), and [ArrayDeque](#arraydeque-class). + ### Deque Interface ### Set Interface