数组:有序数组的平方

给你一个按 非递减顺序 排序的整数数组 nums,返回 每个数字的平方 组成的新数组,要求也按 非递减顺序 排序。

 

示例 1:

输入:nums = [-4,-1,0,3,10]
输出:[0,1,9,16,100]
解释:平方后,数组变为 [16,1,0,9,100]
排序后,数组变为 [0,1,9,16,100]
示例 2:

输入:nums = [-7,-3,2,3,11]
输出:[4,9,9,49,121]
 

提示:

1 <= nums.length <= 104
-104 <= nums[i] <= 104
nums 已按 非递减顺序 排序
 

class Solution {
   public int[] sortedSquares(int[] nums) {
        int[] ints = new int[nums.length];
        int n = nums.length - 1;//新数组赋值索引
        int head = 0;
        int tail = nums.length - 1;
        while (n > 0) {
            if (nums[head] * nums[head] > nums[tail] * nums[tail]) {
                ints[n--] = nums[head] * nums[head];
                head++;
            } else {
                ints[n--] = nums[tail] * nums[tail];
                tail--;
            }
        }
        ints[0] = nums[tail] * nums[tail];
        return ints;
    }
}

题目来自力扣题库977

 

posted @ 2022-09-05 13:43  康迪小哥哥  阅读(14)  评论(0编辑  收藏  举报