标签:represent 赋值 arch 中间 cti ble 函数 this not
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 };
标签:represent 赋值 arch 中间 cti ble 函数 this not
原文地址:http://www.cnblogs.com/love-yh/p/7102738.html