0922-按奇偶排序数组 II

Raphael Liu Lv10

给定一个非负整数数组 numsnums 中一半整数是 奇数 ,一半整数是 偶数

对数组进行排序,以便当 nums[i] 为奇数时,i 也是 奇数 ;当 nums[i] 为偶数时, i 也是 偶数

你可以返回 任何满足上述条件的数组作为答案

示例 1:

**输入:** nums = [4,2,5,7]
**输出:** [4,5,2,7]
**解释:** [4,7,2,5],[2,5,4,7],[2,7,4,5] 也会被接受。

示例 2:

**输入:** nums = [2,3]
**输出:** [2,3]

提示:

  • 2 <= nums.length <= 2 * 104
  • nums.length 是偶数
  • nums 中一半是偶数
  • 0 <= nums[i] <= 1000

进阶: 可以不使用额外空间解决问题吗?

方法一:两次遍历

思路和算法

遍历一遍数组把所有的偶数放进 ans}[0],ans}[2],ans}[4],以此类推。

再遍历一遍数组把所有的奇数依次放进 ans}[1],ans}[3],ans}[5],以此类推。

[sol1-C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Solution {
public:
vector<int> sortArrayByParityII(vector<int>& nums) {
int n = nums.size();
vector<int> ans(n);

int i = 0;
for (int x: nums) {
if (x % 2 == 0) {
ans[i] = x;
i += 2;
}
}
i = 1;
for (int x: nums) {
if (x % 2 == 1) {
ans[i] = x;
i += 2;
}
}
return ans;
}
};
[sol1-Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Solution {
public int[] sortArrayByParityII(int[] nums) {
int n = nums.length;
int[] ans = new int[n];

int i = 0;
for (int x : nums) {
if (x % 2 == 0) {
ans[i] = x;
i += 2;
}
}
i = 1;
for (int x : nums) {
if (x % 2 == 1) {
ans[i] = x;
i += 2;
}
}
return ans;
}
}
[sol1-C]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
int* sortArrayByParityII(int* nums, int numsSize, int* returnSize) {
int* ans = malloc(sizeof(int) * numsSize);
int add = 0;
for (int i = 0; i < numsSize; i++) {
if (nums[i] % 2 == 0) {
ans[add] = nums[i];
add += 2;
}
}
add = 1;
for (int i = 0; i < numsSize; i++) {
if (nums[i] % 2 == 1) {
ans[add] = nums[i];
add += 2;
}
}
*returnSize = numsSize;
return ans;
}
[sol1-JavaScript]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var sortArrayByParityII = function(nums) {
const n = nums.length;
const ans = new Array(n);
let i = 0;
for (const x of nums) {
if (!(x & 1)) {
ans[i] = x;
i += 2;
}
}

i = 1;
for (const x of nums) {
if (x & 1) {
ans[i] = x;
i += 2;
}
}

return ans;
};
[sol1-Golang]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
func sortArrayByParityII(nums []int) []int {
ans := make([]int, len(nums))
i := 0
for _, v := range nums {
if v%2 == 0 {
ans[i] = v
i += 2
}
}
i = 1
for _, v := range nums {
if v%2 == 1 {
ans[i] = v
i += 2
}
}
return ans
}

复杂度分析

  • 时间复杂度:O(N),其中 N 是数组 nums 的长度。

  • 空间复杂度:O(1)。注意在这里我们不考虑输出数组的空间占用。

方法二:双指针

思路与算法

如果原数组可以修改,则可以使用就地算法求解。

为数组的偶数下标部分和奇数下标部分分别维护指针 i, j。随后,在每一步中,如果 nums}[i] 为奇数,则不断地向前移动 j(每次移动两个单位),直到遇见下一个偶数。此时,可以直接将 nums}[i] 与 nums}[j] 交换。我们不断进行这样的过程,最终能够将所有的整数放在正确的位置上。

[sol2-C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Solution {
public:
vector<int> sortArrayByParityII(vector<int>& nums) {
int n = nums.size();
int j = 1;
for (int i = 0; i < n; i += 2) {
if (nums[i] % 2 == 1) {
while (nums[j] % 2 == 1) {
j += 2;
}
swap(nums[i], nums[j]);
}
}
return nums;
}
};
[sol2-Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Solution {
public int[] sortArrayByParityII(int[] nums) {
int n = nums.length;
int j = 1;
for (int i = 0; i < n; i += 2) {
if (nums[i] % 2 == 1) {
while (nums[j] % 2 == 1) {
j += 2;
}
swap(nums, i, j);
}
}
return nums;
}

public void swap(int[] nums, int i, int j) {
int temp = nums[i];
nums[i] = nums[j];
nums[j] = temp;
}
}
[sol2-C]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
void swap(int* a, int* b) {
int t = *a;
*a = *b, *b = t;
}

int* sortArrayByParityII(int* nums, int numsSize, int* returnSize) {
int j = 1;
for (int i = 0; i < numsSize; i += 2) {
if (nums[i] % 2 == 1) {
while (nums[j] % 2 == 1) {
j += 2;
}
swap(nums + i, nums + j);
}
}
*returnSize = numsSize;
return nums;
}
[sol2-JavaScript]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const swap = (nums, i, j) => {
const temp = nums[i];
nums[i] = nums[j];
nums[j] = temp;
};
var sortArrayByParityII = function(nums) {
const n = nums.length;
let j = 1;
for (let i = 0; i < n; i += 2) {
if (nums[i] & 1) {
while (nums[j] & 1) {
j += 2;
}
swap(nums, i, j);
}
}
return nums;
};
[sol2-Golang]
1
2
3
4
5
6
7
8
9
10
11
func sortArrayByParityII(nums []int) []int {
for i, j := 0, 1; i < len(nums); i += 2 {
if nums[i]%2 == 1 {
for nums[j]%2 == 1 {
j += 2
}
nums[i], nums[j] = nums[j], nums[i]
}
}
return nums
}

复杂度分析

  • 时间复杂度:O(N),其中 N 是数组 nums 的长度。

  • 空间复杂度:O(1)。

 Comments
On this page
0922-按奇偶排序数组 II