#75 Sort Colors

Description

Given an array nums with n objects colored red, white, or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the order red, white, and blue.

Here, we will use the integers 0, 1, and 2 to represent the color red, white, and blue respectively.

Follow up:

  • Could you solve this problem without using the library’s sort function?
  • Could you come up with a one-pass algorithm using only O(1) constant space?

Examples

Example 1:

Input: nums = [2,0,2,1,1,0]
Output: [0,0,1,1,2,2]

Example 2:

Input: nums = [2,0,1]
Output: [0,1,2]

Example 3:

Input: nums = [0]
Output: [0]

Example 4:

Input: nums = [1]
Output: [1]

Constraints:

n == nums.length
1 <= n <= 300
nums[i] is 0, 1, or 2.

解题思路

记录一下0/1/2出现的次数就可以啦

代码

class Solution {
    public void sortColors(int[] nums) {
        int zero, one, two, i;
        zero = 0;
        one = 0;
        two = 0;
        
        for(i = 0; i < nums.length; i++){
            if(nums[i] == 0){
                zero ++;
                continue;
            }
            if(nums[i] == 1){
                one ++;
                continue;
            }
            if(nums[i] == 2){
                two ++;
                continue;
            }
        }
        
        for(i = 0; i < zero; i++){
            nums[i] = 0;
        }
        for(i = 0; i < one; i++){
            nums[i + zero] = 1;
        }
        for(i = 0; i < two; i++){
            nums[i + zero + one] = 2;
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值