颜色分类(Java)

给定一个包含红色、白色和蓝色,一共 n 个元素的数组,原地对它们进行排序,使得相同颜色的元素相邻,并按照红色、白色、蓝色顺序排列。
此题中,我们使用整数 0、 1 和 2 分别表示红色、白色和蓝色。

注意:
不能使用代码库中的排序函数来解决这道题。

示例:
输入: [2,0,2,1,1,0]
输出: [0,0,1,1,2,2]

package com.loo;

import java.util.Arrays;

public class ColorGroup {

    private static final int RED = 0;
    private static final int WHITE = 1;
    private static final int BLUE = 2;
    public static void main(String[] args) {
        int[] array = new int[] { BLUE , RED , WHITE , WHITE , BLUE , RED , RED , RED , BLUE , BLUE , WHITE };
        System.out.println(Arrays.toString(array));
        sortColors(array); // sortColors2(array);
        System.out.println(Arrays.toString(array));
    }

    public static void sortColors(int[] colors) {
        if (colors == null || colors.length == 0) {
            return;
        }
        int len = colors.length;
        int c0 = 0;
        int c1 = 0;
        int c2 = 0;
        for (int i=0;i<len;i++) {
            if (colors[i] == RED) {
                c0++;
            } else if (colors[i] == WHITE) {
                c1++;
            } else {
                c2++;
            }
        }
        for (int i=0;i<len;i++) {
            if (i<c0) {
                colors[i] = RED;
            } else if (i>=c0 && i<(c0+c1)) {
                colors[i] = WHITE;
            } else {
                colors[i] = BLUE;
            }
        }
    }

    public static void sortColors2(int[] colors) {
        if (colors == null || colors.length == 0) {
            return;
        }
        int len = colors.length;
        quickSort2(colors , 0 , len-1);
    }

    // 三向切分的快速排序
    public static void quickSort2(int[] arr , int low , int hight) {
        if (low >= hight) {
            return;
        }
        int lt = low;
        int gt = hight;
        int i = low + 1;
        int temp = arr[low];
        while (i<=gt) {
            if (temp > arr[i]) {
                swap(arr , lt++ , i++);
            } else if (temp < arr[i]) {
                swap(arr , i , gt--);
            } else {
                i++;
            }
        }
        quickSort2(arr , low , lt - 1);
        quickSort2(arr , gt + 1 , hight);
    }

    public static void swap(int[] colors , int a , int b) {
        int temp = colors[a];
        colors[a] = colors[b];
        colors[b] = temp;
    }
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值