马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
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:
arr1.length, arr2.length <= 1000
0 <= arr1[i], arr2[i] <= 1000
Each arr2[i] is distinct.
Each arr2[i] 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[i])){
map.put(arr1[i],1);
}else{
map.put(arr1[i],map.get(arr1[i])+1);
}
}
int[] ret = new int[arr1.length];
int i = 0;
for(int k : arr2){
while(map.get(k) != 0){
ret[i] = 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[i] = 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[1001];
for(int i : arr1){
ret[i]++;
}
int j = 0;
for(int i : arr2){
while(ret[i]-- > 0){
arr1[j++] = i;
}
}
for(int i = 0; i< 1001; i++){
while(ret[i]-- > 0){
arr1[j++] = i;
}
}
return arr1;
}
}
|