第一次解法,循环解法(java)

  • java中的循环 看这里 采用简洁写法,其结果类似与正常写法,直接遍历元素,当然也可以直接遍历变量。 ```java

class Solution { public int[] sortArrayByParityII(int[] A) { int len = A.length; int[] result = new int[len];

  1. int i = 0;
  2. int j = 1;
  3. for(int x : A){
  4. if(x%2==0){
  5. result[i] = x;
  6. i += 2;
  7. }
  8. else{
  9. result[j] = x;
  10. j+=2;
  11. }
  12. }
  13. return result;
  14. }

} ```