LeetCode 75. Sort Colors (三路快排)

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.

题意:red ----0,white----1,blue----2,数组nums只会含有0,1,2三个值,并排序

1.简单的直接调用排序函数,这里注意一下vector排序函数的传递参数为首尾两个迭代器,默认升序。还可以自定义排序方式

class Solution {
public:
    void sortColors(vector& nums) {
        sort(nums.begin(),nums.end());
    }
};

LeetCode 75. Sort Colors (三路快排)_第1张图片

2.观察该数组我们发现,分别统一0,1,2三个元素的个数再来赋值,统计排序。

class Solution {
public:
    void sortColors(vector& nums) {
        //1.sort(nums.begin(),nums.end());
        int count[3]={0};
        for(int i:nums)
        {
            count[i]++;
        }
        int index =0;
        for(int i=0;i<3;i++)
        {
            for(int j=0;j
LeetCode 75. Sort Colors (三路快排)_第2张图片
3.三路快排。该算法的速度和函数库的速度是差不多的。

1.分别定义:[0...zero]区间表示的是0, [zero+1...two-1]区间表示的是1,[two...n-1]区间表示的是2

2.初始化的时候为无效。i表示当前遍历元素的索引,当为1继续++。

3.当为2的时候,需要和two-1位置的元素交换,并且two-1位置元素并未访问,交换之后不必i++;

4.当为0的时候,需要和zero+1位置的元素交换,由于zero+1的位置已经被访问,故i++

5.注意循环的结束条件。

class Solution {
public:
    void sortColors(vector& nums) {
        int zero = -1;
        int two = nums.size();
        for(int i=0;i

LeetCode 75. Sort Colors (三路快排)_第3张图片


你可能感兴趣的:(LeetCode,LeetCode数组字符串问题)