977, 有序数组的平方
大约 2 分钟
一、题目描述
给你一个按 非递减顺序 排序的整数数组 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 <= 10⁴
- -10⁴ <= nums[i] <= 10⁴
- nums 已按 非递减顺序 排序
进阶:
请你设计时间复杂度为 O(n) 的算法解决本问题
相关主题
- 数组
- 双指针
- 排序
二、题解
方法 1: 暴力解法
pub fn sorted_squares(nums: Vec<i32>) -> Vec<i32> {
let mut res = nums.into_iter().map(|v| v * v).collect::<Vec<_>>();
res.sort_unstable();
res
}
public int[] sortedSquares(int[] nums) {
for (int i = 0; i < nums.length; i++) {
nums[i] *= nums[i];
}
Arrays.sort(nums);
return nums;
}
方法 2: 双指针
pub fn sorted_squares(nums: Vec<i32>) -> Vec<i32> {
//Self::two_pointers_1(nums)
Self::two_pointers_2(nums)
}
pub fn two_pointers_1(nums: Vec<i32>) -> Vec<i32> {
let len = nums.len();
let mut left = 0;
let mut right = len - 1;
let mut res = vec![0; len];
let mut idx = len - 1;
loop {
let square_of_left = nums[left].pow(2);
let square_of_right = nums[right].pow(2);
if square_of_left > square_of_right {
res[idx] = square_of_left;
idx -= 1;
left += 1;
} else if square_of_left < square_of_right {
res[idx] = square_of_right;
idx -= 1;
right -= 1;
} else {
res[idx] = square_of_right;
if left == right {
break;
}
idx -= 1;
res[idx] = square_of_left;
if left + 1 == right {
break;
}
idx -= 1;
right -= 1;
left += 1;
}
}
res
}
pub fn two_pointers_2(nums: Vec<i32>) -> Vec<i32> {
let mut left = 0;
let mut right = nums.len() as i32 - 1;
let mut idx = nums.len() as i32 - 1;
let mut res = vec![0; nums.len()];
while left <= right {
let square_of_left = nums[left as usize].pow(2);
let square_of_right = nums[right as usize].pow(2);
res[idx as usize] = if square_of_left > square_of_right {
left += 1;
square_of_left
} else {
right -= 1;
square_of_right
};
idx -= 1;
}
res
}
public int[] sortedSquares(int[] nums) {
//return this.twoPointers1(nums);
return this.twoPointers2(nums);
}
public int[] twoPointers1(int[] nums) {
int[] res = new int[nums.length];
int left = 0;
int right = nums.length - 1;
int idx = nums.length - 1;
while (true) {
int square_of_left = nums[left] * nums[left];
int square_of_right = nums[right] * nums[right];
if (square_of_left > square_of_right) {
res[idx] = square_of_left;
idx--;
left++;
} else if (square_of_left < square_of_right) {
res[idx] = square_of_right;
idx--;
right--;
} else {
res[idx] = square_of_right;
if (left == right) {
break;
}
idx--;
res[idx] = square_of_left;
if (left + 1 == right) {
break;
}
idx--;
left++;
right--;
}
}
return res;
}
public int[] twoPointers2(int[] nums) {
int[] res = new int[nums.length];
for (int idx = nums.length - 1, left = 0, right = nums.length - 1; left <= right;) {
int square_of_left = nums[left] * nums[left];
int square_of_right = nums[right] * nums[right];
if (square_of_left > square_of_right) {
res[idx--] = square_of_left;
left++;
} else {
res[idx--] = square_of_right;
right--;
}
}
return res;
}