输入一个整数数组,实现一个函数来调整该数组中数字的顺序,使得所有的奇数位于数组的前半部分,所有的偶数位于数组的后半部分,并保证奇数和奇数,偶数和偶数之间的相对位置不变。
法一:
public class Solution { public void reOrderArray(int [] array) { int oddCnt=0; for(int val : array){ if((val & 0x1) == 1) oddCnt++; } int[] copy = array.clone(); int i = 0, j = oddCnt; for(int val : copy){ if((val & 0x1) == 1) array[i++] = val; else array[j++] = val; } } }
法二:
public class Solution { public void reOrderArray(int [] array) { for(int i = 0; i < array.length; i++){ for(int j = 0; j < array.length - 1 - i; j++){ if(array[j] % 2 == 0 && array[j+1] % 2 != 0){ int temp = array[j+1]; array[j+1] = array[j]; array[j] = temp; } } } } }
原文地址:https://www.cnblogs.com/MiaoPlus/p/10745839.html
时间: 2024-10-17 02:12:44