C++,三行就能解决
调整数组顺序使奇数位于偶数前面
http://www.nowcoder.com/practice/ef1f53ef31ca408cada5093c8780f44b
使用STL和Lambda
vector<int> reOrderArray(vector<int>& array) {
// write code here
stable_partition(array.begin(), array.end(),[](int x){
return x %2 !=0;
});
return array;
}