1. PriorityQueue<Integer> queue = new PriorityQueue<>(new Comparator<Integer>(){
    2. public int compare(Integer i1,Integer i2) {
    3. return i1-i2; // 从小到达排序
    4. }
    5. });