剑指offer面试题【21】Leetcode【905】---Sort Array By Parity奇偶排序【Array】【Sort】【Easy】【C++】【Python】
题目描述给一个非负整数数组A,返回一个数组,该数组由A的所有偶数元素和A的所有奇数元素组成。偶数排在前面,奇数排在后面。偶数和奇数内部可以不排序。示例Input:[3,1,2,4]Output:[2,4,3,1]Theoutputs[4,2,3,1],[2,4,1,3],and[4,2,1,3]wouldalsobeaccepted.Note1sortArrayByParity(vector&A)