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.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
func sortColors(_ nums: inout [Int]) { var i0 = 0, i1 = 0, i2 = nums.count-1 while i1 <= i2 { if nums[i1] == 2 { nums.swapAt(i1, i2) i2 -= 1 } else if nums[i1] == 0 { nums.swapAt(i0, i1) i0 += 1; i1 += 1 } else { i1 += 1 } } } |
❤ 点击这里 -> 订阅《PAT | 蓝桥 | LeetCode学习路径 & 刷题经验》by 柳婼