题目:
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?
class Solution {
public:
void sortColors(int A[], int n) {
//i表示0的个数,j表示0,1的个数,k表示0,1,2的个数
int i = 0, j = 0, k = 0;
for(int m = 0; m < n; m++) {
if(A[m] == 0) {
A[k++] = 2;
A[j++] = 1;
A[i++] = 0;
}
else if(A[m] == 1) {
A[k++] = 2;
A[j++] = 1;
}
else
A[k++] = 2;
}
}
};
本文介绍了一个不使用排序库函数的三色排序问题解决方案。通过一个遍历和常数空间复杂度实现0、1、2三种颜色的数组排序,讨论了算法细节及优化思路。
218

被折叠的 条评论
为什么被折叠?



