Sort Colors
Medium
Given an array with_n_objects colored red, white or blue, sort themin-placeso 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.
Example:
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 a one-pass algorithm using only constant space?
Solution
https://www.jiuzhang.com/solution/sort-colors/#tag-other
使用一次扫描的办法。 设立三根指针,left, index, right。定义如下规则:
left 的左侧都是 0(不含 left) right 的右侧都是 2(不含 right) index 从左到右扫描每个数,如果碰到 0 就丢给 left,碰到 2 就丢给 right。碰到 1 就跳过不管。
Counting Sort (Buckets) - (0 ms, faster than 100.00%)
Reference
https://leetcode.com/problems/sort-colors/discuss/26500/Four-different-solutions
Last updated