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 = [2,3,1,3,2,4,6,7,9,2,19], arr2 = [2,1,4,3,9,6]
Output: [2,2,2,1,4,3,3,9,6,7,19]

 

Constraints:


Solution:

class Solution {
    public int[] relativeSortArray(int[] arr1, int[] arr2) {
        Map<Integer, Integer> index = new HashMap();
        for (int i = 0; i < arr2.length; i ++) {
            index.put(arr2[i], i);
        }
        Integer[] arr = Arrays.stream(arr1).boxed().toArray(Integer[]::new);
        Arrays.sort(arr, (a, b) -> {
            if (index.containsKey(a) && index.containsKey(b)) {
                return Integer.compare(index.get(a), index.get(b));
            } else if (index.containsKey(a)) {
                return -1;
            } else if (index.containsKey(b)) {
                return 1;
            } else {
                return Integer.compare(a, b);
            }
        });
        return Arrays.stream(arr).mapToInt(i -> i).toArray();
    }
}