public class Solution { public void reOrderArray(int [] array) { //重点在于相对位置不变 //思路:遍历数组,如果找到奇数, //1.把这个奇数保存起来 //2.把奇数前面的偶数整体往后挪一个位置 //3.把奇数按照先后顺序放...