java中常用的数据结构
2021-12-16 本文已影响0人
visionarywind
stack
数据结构
LinkedList
方法
- push
- pop
deque
数据结构
LinkedList
方法
- addFirst
- addLast
- pollFirst
- pollLast
- peekFirst
- peekLast
堆
数据结构
PriorityQueue
- PriorityQueue(size,new Comparator())
方法
- offer
- peek
- poll
LinkedList
LinkedList
PriorityQueue