LeetCode 905. 按奇偶排序数组
描述
给你一个整数数组 nums,将 nums 中的的所有偶数元素移动到数组的前面,后跟所有奇数元素。
返回满足此条件的 任一数组 作为答案。
示例 1:
输入:nums = [3,1,2,4]
输出:[2,4,3,1]
解释:[4,2,3,1]、[2,4,1,3] 和 [4,2,1,3] 也会被视作正确答案。
示例 2:
输入:nums = [0]
输出:[0]
提示:
1 <= nums.length <= 5000
0 <= nums[i] <= 5000
题解
class Solution {
public int[] sortArrayByParity(int[] nums) {
// 数组长度
int n = nums.length;
// 左右指针
int left = 0;
int right = n-1;
// 遍历
while(left<right){
// 左指针寻找奇数
while( left < right && nums[left]%2==0){
left++;
}
// 右指针寻找偶数
while(left<right && nums[right]%2!=0){
right--;
}
// 交换
if(left<right){
int tmp = nums[left];
nums[left] = nums[right];
nums[right] = tmp;
}
left++;
right--;
}
// 返回结果
return nums;
}
}