java中常用的数据结构

stack

数据结构

LinkedList

方法

  • push
  • pop

deque

数据结构

LinkedList

方法

  • addFirst
  • addLast
  • pollFirst
  • pollLast
  • peekFirst
  • peekLast

数据结构

PriorityQueue

  • PriorityQueue(size,new Comparator())

方法

  • offer
  • peek
  • poll

你可能感兴趣的:(java中常用的数据结构)