Seawolf 发表于 2019-12-24 14:15:54

leetcode 1122. Relative Sort Array

Given two arrays arr1 and arr2, the elements of arr2 are distinct, and all elements in arr2 are also in arr1.

Sort the elements of arr1 such that the relative ordering of items in arr1 are the same as in arr2.Elements that don't appear in arr2 should be placed at the end of arr1 in ascending order.



Example 1:

Input: arr1 = , arr2 =
Output:


Constraints:

arr1.length, arr2.length <= 1000
0 <= arr1, arr2 <= 1000
Each arr2 is distinct.
Each arr2 is in arr1.

class Solution {
    public int[] relativeSortArray(int[] arr1, int[] arr2) {
      if(arr1.length == 0 || arr2.length == 0) return arr1;
      Map <Integer , Integer> map = new HashMap<Integer, Integer>();
      for(int i = 0; i< arr1.length ; i++){
            if(!map.containsKey(arr1)){
                map.put(arr1,1);
            }else{
                map.put(arr1,map.get(arr1)+1);
            }
      }
      
      int[] ret = new int;
      int i = 0;
      for(int k : arr2){
            while(map.get(k) != 0){
                ret = k;
                map.put(k,map.get(k)-1);
                i++;
            }
            
            if(map.get(k) == 0){
                map.remove(k);
            }
      }
      
      PriorityQueue<Integer> queue = new PriorityQueue<Integer>();
      for(Integer k : map.keySet()){
            while(map.get(k) != 0){
                queue.add(k);
                map.put(k,map.get(k)-1);
            }
      }
      
      while(!queue.isEmpty()){
            ret = queue.poll();
            i++;
      }
      
      return ret;
    }
}

class Solution {
    public int[] relativeSortArray(int[] arr1, int[] arr2) {
      if(arr1.length == 0 || arr2.length == 0) return arr1;
      
      int[] ret = new int;
      
      for(int i : arr1){
            ret++;
      }
      
      int j = 0;
      for(int i : arr2){
            while(ret-- > 0){
                arr1 = i;
            }
      }
      
      for(int i = 0; i< 1001; i++){
            while(ret-- > 0){
                arr1 = i;
            }
      }
      
      return arr1;
    }
}
页: [1]
查看完整版本: leetcode 1122. Relative Sort Array