给定一个非负整数数组 A
,返回一个数组,在该数组中, A
的所有偶数元素之后跟着所有奇数元素。
你可以返回满足此条件的任何数组作为答案。
示例:
输入:[3,1,2,4]
输出:[2,4,3,1]
输出 [4,2,3,1],[2,4,1,3] 和 [4,2,1,3] 也会被接受。
提示:
1 <= A.length <= 5000
0 <= A[i] <= 5000
创建两个集合,分别装载偶数,奇数,最后直接将集合转换为数组
import java.util.LinkedList;
import java.util.List;
public class SortArrayByParityTest {
public static void main(String[] args) {
int[] array = {3, 1, 2, 4};
int[] sortArrayByParity = sortArrayByParity(array);
for (int num : sortArrayByParity) {
System.out.print(num + "\t");
}
}
public static int[] sortArrayByParity(int[] A) {
if (A == null || A.length == 0) {
return null;
}
List<Integer> evenList = new LinkedList<>();
List<Integer> oddList = new LinkedList<>();
for (int j : A) {
if (j % 2 == 0) {
evenList.add(j);
} else {
oddList.add(j);
}
}
evenList.addAll(oddList);
return evenList.stream().mapToInt(x -> x).toArray();
}
}
对于java开发者而言,集合的重要性不言而喻,学会合理使用集合是我们需要做的。