题目描述
题目链接:905. Sort Array By Parity
Given an array
A
of non-negative integers, return an array consisting of all the even elements ofA
, followed by all the odd elements ofA
.You may return any answer array that satisfies this condition.
例子
Input:[3,1,2,4]
Output: [2,4,3,1]
Explanation:The outputs [4,2,3,1], [2,4,1,3], and [4,2,1,3] would also be accepted.
Note
1.
1 <= A.length <= 5000
2.0 <= A[i] <= 5000
解题思路
这道题目比较简单,可以创建一个和 A
等长的数组;遍历一遍 A
,遇到奇数从后往前填入,遇到偶数从前往后填入即可。代码如下:
1 |
|
- 时间复杂度:O(n)
- 空间复杂度:O(n) —- 输出答案需要线性空间