关于常用的java工具类

2019-03-07 16:45:24 浏览数 (1)

一、PriorityQueue和Queue

  1. PriorityQueue<Integer> heap = newPriorityQueue<>(newmyCom());
  2. Queue<Integer> queue = newLinkedList<>();
代码语言:javascript复制
class myCom implements Comparator<Integer>{
    @Override
    public int compare(Integer num1,Integer num2){
        return num1 - num2;
    }
}
PriorityQueue<Integer> heap = new PriorityQueue<>(new myCom());
Queue<Integer> queue = new LinkedList<>();

0 人点赞