GuilinDev

Lc1389

05 August 2008

1389. Create Target Array in the Given Order

按既定顺序创建目标数组

给两个整数数组 nums 和 index。你需要按照以下规则创建目标数组:

目标数组 target 最初为空。

按从左到右的顺序依次读取 nums[i] 和 index[i],在 target 数组中的下标 index[i] 处插入值 nums[i] 。

重复上一步,直到在 nums 和 index 中都没有要读取的元素。

返回目标数组。

ArrayList模拟

1
2
3
4
5
6
7
8
9
10
11
12
13
class Solution {
    public int[] createTargetArray(int[] nums, int[] index) {
        List<Integer> list = new ArrayList<Integer>();
        for (int i = 0; i < nums.length; ++i) {
            list.add(index[i], nums[i]);
        }
        int[] result = new int[nums.length];
        for (int i = 0; i < nums.length; ++i) {
            result[i] = list.get(i);
        }
        return result;
    }
}

LinkedList

1
2
3
4
5
6
7
8
9
class Solution {
    public int[] createTargetArray(int[] nums, int[] index) {
        LinkedList<Integer> linkedList = new LinkedList<>();
        for (int i = 0; i < nums.length; i++) {
            linkedList.add(index[i], nums[i]);
        }
        return linkedList.stream().mapToInt(Integer::intValue).toArray();
    }
}