[LeetCode] 75. Sort Colors

42 篇文章 0 订阅
37 篇文章 0 订阅

题目链接: https://leetcode.com/problems/sort-colors/description/

Description

Given an array with n objects colored red, white or blue, sort them 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.

Note:
You are not suppose to use the library’s sort function for this problem.

解题思路

设两个变量 red_nextblue_prev,分别代表红色下一个该放的位置和蓝色前一个该放的位置。下一个和前一个是相对数组的位置来说的,数组下标 12 的前一个,21 的后一个。

先把数组两端满足顺序的过滤出,只考虑中间不满足的数组元素,过滤后数组下标 red_next 前面的所有元素都为 0blue_prev 后面的所有元素都为 2

然后,对数组从 red_nextblue_prev 遍历一遍,当发现红色的,即值为 0,就与 nums[red_next] 交换,并将 red_next 加一,这样遍历后所有红色的都放到了数组的前部。

最后,再对数组从 blue_prevred_next 遍历一遍,当发现蓝色的,即值为 2,就与 nums[blue_prev] 交换,并将 blue_prev 减一,这样就将蓝色的都放到了数组的后部。

时间复杂度 O(n),空间复杂度 O(1)

Code

class Solution {
public:
    void sortColors(vector<int>& nums) {
        int red_next = 0;
        int blue_prev = nums.size() - 1;

        while (red_next < nums.size() && nums[red_next] == 0)
            red_next++;

        while (blue_prev >= 0 && nums[blue_prev] == 2)
            blue_prev--;

        for (int i = red_next; i <= blue_prev; ++i) {
            if (nums[i] == 0) {
                swap(nums[i], nums[red_next]);
                red_next++;
            }
        }

        for (int i = blue_prev; i >= red_next; --i) {
             if (nums[i] == 2) {
                swap(nums[i], nums[blue_prev]);
                blue_prev--;
            }
        }
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值