[Leetcode] sort colors 颜色排序
Posted 王大咩的图书馆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Leetcode] 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.
Note:
You are not suppose to use the library\'s sort function for this problem.
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?
1 class Solution { 2 public: 3 void sortColors(int A[], int n) 4 { 5 int beg=0; 6 int end=n-1; 7 int cur=0; 8 9 while(cur<=end) 10 { 11 if(A[cur]==0) 12 { 13 swap(A[cur],A[beg]); 14 cur++; 15 beg++; 16 } 17 else if(A[cur]==1) 18 { 19 cur++; 20 } 21 else 22 { 23 swap(A[cur],A[end]); 24 end--; 25 } 26 } 27 } 28 };
以上是关于[Leetcode] sort colors 颜色排序的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 75. Sort Colors(排序颜色)
[LeetCode] 75. Sort Colors 颜色排序
LeetCode 75. 颜色分类(Sort Colors) 30