数据结构和算法分析数据结构与算法

Leetcode-1929 数组串联

2021-11-19  本文已影响0人  itbird01

1929. 数组串联

解题思路

1.初始化n*2的数组
2.用system arraycopy操作

解题遇到的问题

后续需要总结学习的知识点

##解法1
class Solution {
    public int[] getConcatenation(int[] nums) {
        //初始化n*2的数组
        int[] res = new int[nums.length*2];
        //用system arraycopy操作
        System.arraycopy(nums, 0, res, 0, nums.length);
        System.arraycopy(nums, 0, res, nums.length, nums.length);
        return res;
    }
}
上一篇 下一篇

猜你喜欢

热点阅读