deque1 [자료구조 기초] Stack, Queue, PriorityQueue, Deque Stack Queue Deque PriorityQueue 구조 LIFO(LastInFirstOut) FIFO(FirstInFirstOut) FIFO(FirstInFirstOut) FIFO(FirstInFirstOut) 활용 DFS BFS 최소/최대 값의 삽입, 삭제 작업이 잦을 때 - 입력 push(obj) add(obj) / offer(obj) 앞쪽에 - 뒤쪽에 addFirst(obj) - addLast(obj) add(obj) / offer(obj) 출력 peek(); element() / peek() 앞쪽에서 - 뒤쪽에서 peekFirst() - peekLast(); element() / poll() 출력 & 제거 pop(); remove() / poll() 앞쪽에서 - 뒤쪽에서 removeFirs.. 2021. 4. 6. 이전 1 다음