标签:bsp 图片 solution style 代码 end sed push strong
array[i]%2==0用vector的push_back()的函数实现存储。result_odd.insert(result_odd.end(), result_even.begin(), result_even.end()) //在end()前插入[result_even.begin(), result_even.end()]区间的元素。
1 class Solution { 2 public: 3 void reOrderArray(vector<int> &array) { 4 vector<int> result_even, result_odd; 5 for(int i=0;i<array.size();i++) 6 { 7 if(array[i]%2==0){ 8 result_even.push_back(array[i]); 9 } 10 else{ 11 result_odd.push_back(array[i]); 12 } 13 } 14 result_odd.insert(result_odd.end(),result_even.begin(),result_even.end()); 15 array = result_odd; 16 } 17 };
剑指offer13:数组[奇数,偶数],奇数偶数相对位置不变。
标签:bsp 图片 solution style 代码 end sed push strong
原文地址:https://www.cnblogs.com/wxwhnu/p/11407616.html