按奇偶排序数组
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/sort-array-by-parity
给你一个整数数组 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]
解答:
classSolution { publicint[] sortArrayByParity(int[] A) { if(A==null||A.length==1) returnA; intleft=0; intright=A.length-1; inttem; while(left<right){ if((A[left] &1) ==1&& (A[right] &1) ==0){ tem=A[left]; A[left] =A[right]; A[right] =tem; } while((A[left] &1) ==0){ left++; } while((A[right] &1) ==1){ right--; } } returnA; } }