其他分享
首页 > 其他分享> > 2021.09.03 - 014.调整数组顺序使奇数位于偶数前面

2021.09.03 - 014.调整数组顺序使奇数位于偶数前面

作者:互联网

文章目录

1. 题目

在这里插入图片描述

2. 思路

(1) 头尾指针法

3. 代码

public class Test {
    public static void main(String[] args) {
        Solution solution = new Solution();
        int[] exchange = solution.exchange(new int[]{1, 3, 5});
        for (int i : exchange) {
            System.out.println(i);
        }
    }
}

class Solution {
    public int[] exchange(int[] nums) {
        int low = 0;
        int high = nums.length - 1;
        while (low < high) {
            while (low < high && (nums[low] & 1) == 1) {
                low++;
            }
            while (low < high && (nums[high] & 1) == 0) {
                high--;
            }
            if (low != high) {
                int temp = nums[low];
                nums[low] = nums[high];
                nums[high] = temp;
            }
        }
        return nums;
    }
}

标签:03,nums,int,2021.09,high,014,low,exchange,指针
来源: https://blog.csdn.net/qq_44021223/article/details/120084774