博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode | Sort Colors
阅读量:5827 次
发布时间:2019-06-18

本文共 2653 字,大约阅读时间需要 8 分钟。

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.

click to show follow up.

Follow up:

A rather straight forward solution is a two-pass algorithm using counting sort.
First, iterate the array counting number of 0's, 1's, and 2's, then overwrite array with total number of 0's, then 1's and followed by 2's.

Could you come up with an one-pass algorithm using only constant space?

Method I

如提示,最简单的就是扫描两遍,第一遍计数,第二遍填数。

32ms

1 class Solution { 2 public: 3     void sortColors(int A[], int n) { 4         int red = 0, white = 0, blue = 0;  5         for (int i = 0; i < n; ++i) { 6             switch(A[i]) { 7                 case 0: red++; break; 8                 case 1: white++; break; 9                 case 2: blue++; break;10             }11         }12         13         for (int i = 0; i < red; ++i) A[i] = 0;14         for (int i = 0; i < white; ++i) A[red + i] = 1;15         for (int i = 0; i < blue; ++i) A[red + white + i] = 2;16     }17 };

Method II

一遍的没想清楚,看完网上的思路再重写了一遍。我的理解是这样:

双指针,red 记录已经放在正确位置的0的个数,blue记录已经放在正确位置的2的个数。同时用i从头扫描到blue。

1. 当碰到0时,放到A[red]这个位置上,red需要累加,i也需要累加。red累加很好理解,i累加是因为red必然<=i, 当A[i]=0时,和A[red]交换之后,要想在A[red+1...i]之间再找到0已经不可能了,因为0值都被交换到red前面了,所以要想再找到0值只能i++。

2. 当i到达blue的位置的时候,因为A[blue+1...n-1]都是2,所以已经不用再继续了。可以退出。

3. 注意blue这个位置还没有填充2,所以i是可以,也必须走到blue的。

8ms

class Solution {public:    void sortColors(int A[], int n) {        int i = 0;        int red = 0, blue = n - 1;        while (i <= blue) {            if (A[i] == 0) {                swap(A[i], A[red]);                red++;                i++;            } else if (A[i] == 2) {                swap(A[i], A[blue]);                blue--;            } else {                i++;            }        }    }};

 Method III

另一种单遍扫描的算法。one、two、zero分别表示1、2、0的当前更新位置。注意这个位置是小于等于当前位置p的。当出现0时,1和2的位置需要移动一位。当出现1时,只有2会受影响。当出现2时,其他都不受影响。

1 class Solution { 2 public: 3     void sortColors(int A[], int n) { 4         int one = 0, two = 0, zero = 0;  5          6         for (int i = 0; i < n; ++i) { 7             if (A[i] == 2) { 8                 A[two++] = 2; 9             } else if (A[i] == 1) {10                 A[two++] = 2;11                 A[one++] = 1;12             } else {13                 A[two++] = 2;14                 A[one++] = 1;15                 A[zero++] = 0;16             }17         }18     }19 };

 

转载于:https://www.cnblogs.com/linyx/p/3709940.html

你可能感兴趣的文章
shell如何快速锁定所有账号
查看>>
HTML 5实现的手机摇一摇
查看>>
Linux 文件IO理解
查看>>
Ninject 2.x细说---2.绑定和作用域
查看>>
30个非常时尚的网页联系表单设计优秀示例
查看>>
使用membership(System.Web.Security)来进行角色与权限管理
查看>>
opticom 语音质量验证白皮书
查看>>
3D实时渲染中的BSP树和多边形剔除
查看>>
Frank Klemm's Dither and Noise Shaping Page: Dither and Noise Shaping In MPC/MP+
查看>>
网络抓包的部署和工具Wireshark【图书节选】
查看>>
Redis在Windows+linux平台下的安装配置
查看>>
Maven入门实战笔记-11节[6]
查看>>
Local declaration of 'content' hides instance variable
查看>>
ASP.NET中 HTML标签总结及使用
查看>>
Linux下日志系统的设计
查看>>
爬虫IP被禁的简单解决方法——切换UserAgent
查看>>
php生成word,并下载
查看>>
紫书 习题8-11 UVa 1615 (区间选点问题)
查看>>
asp.net mvc学习(Vs技巧与Httpcontext)
查看>>
float数据在内存中是怎么存储的
查看>>