✔목차 선언 삽입 삭제 접근 기타 선언 > new Stack new HashMap() 삽입 > - push push(E element) 삭제 > pop clear pop() _-반환형: stack 형식 clear() 스택 원소 모두 삭제 접근 >
✔목차 선언 삽입 삭제 접근 선언 > new LinkedList new LinkedList() Queue 선언 시 LinkedList로 함 Queue, LinkedList 모두 import 해야 함 삽입 > - add offer add(E element)
✔목차 선언 삽입 삭제 접근 기타 선언 > new HashMap new HashMap() 삽입 > - put putIfAbsent put(K key, V value) 중복 key가 입력되었을 때 업데이트 putIfAbsent(K key, V value)
선언삽입삭제접근기타우선순위 지정new PriorityQueuenew PriorityQueue<\[type]>()Min heap으로 동작Max heap은 Collections 필요addofferadd(E element)큐 공간 없어 삽입 실패 시 exception터