Leetcode-905 按奇偶校验排序数组

Posted Asurudo Jyo の 倉 庫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode-905 按奇偶校验排序数组相关的知识,希望对你有一定的参考价值。

 1 class Solution
 2 {
 3     public:
 4         vector<int> sortArrayByParity(vector<int>& A)
 5         {
 6             vector<int> result_one;
 7             vector<int> result_two;
 8             for(auto d:A)
 9             {
10                 if(d&0x1)
11                     result_two.push_back(d);
12                 else
13                     result_one.push_back(d);
14             }
15             vector<int> result;
16             for(auto d:result_one)
17                 result.push_back(d);
18             for(auto d:result_two)
19                 result.push_back(d);
20             return result;
21         }
22 };

 

以上是关于Leetcode-905 按奇偶校验排序数组的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode#905 - 按奇偶排序数组

按奇偶校验排序数组结果不稳健

c_cpp 905.按奇偶校验排序数组

按奇偶校验排序数组

922-按奇偶校验排序数组II

922. 按奇偶排序数组 II『简单』