- 思路灵感来自:插入排序
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param array int整型vector * @return int整型vector */ vector<int> reOrderArray(vector<int>& array) { // write code here int Len=array.size(); if( Len<=1 ) { return array; } for( int cur=1; cur<Len; ++cur ) { //奇数 if( array[cur]&1 ) { int pos=cur; while( pos>0 ) { if( 0==(array[pos-1]&1) ) { swap( array[pos], array[pos-1] ); --pos; } else { break; } } } } return array; } };