75. Sort Colors

Posted 阿怪123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了75. Sort Colors相关的知识,希望对你有一定的参考价值。

public class Solution {
    public void sortColors(int[] nums) {
        int len=nums.length;
        int red=0;
        int white=0;
        int blue=0;
        for(int i=0;i<len;i++)
        {
            if(nums[i]==0)
                red++;
            else if(nums[i]==1)
                white++;
            else
                blue++;
        }
        for(int i=0;i<len;i++)
        {
            if(red!=0)
            {
                red--;
                nums[i]=0;
            }
            else if(white!=0)
            {
                white--;
                nums[i]=1;
            }
            else
            {
                blue--;
                nums[i]=2;
            }
        }
    }
}

 

以上是关于75. Sort Colors的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 75. 颜色分类(Sort Colors)

75. Sort Colors

[leetcode sort]75. Sort Colors

Leetcode 75. Sort Colors

75. Sort Colors

75. Sort Colors