码迷,mamicode.com
首页 > 其他好文 > 详细

Sort Colors

时间:2016-09-07 10:26:25      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

Given an array with n objects colored redwhite 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 integer 01, and 2 to represent the color red, white, and blue respectively.

 Notice

You are not supposed to use the library‘s sort function for this problem. 
You should do it in-place (sort numbers in the original array).

 
Runtime: 82ms
 1 class Solution{
 2 public:
 3     /**
 4      * @param nums: A list of integer which is 0, 1 or 2 
 5      * @return: nothing
 6      */    
 7     void sortColors(vector<int> &nums) {
 8         // write your code here
 9         if (nums.size() < 2) return;
10         
11         int left = 0, right = nums.size() - 1;
12         int index = 0;
13         while (index <= right) {
14             if (nums[index] == 0)
15                 swap(nums[index++], nums[left++]);
16             else if (nums[index] == 2)
17                 swap(nums[index], nums[right--]);
18             else
19                 index++;
20         }
21     }
22 };

 

Sort Colors

标签:

原文地址:http://www.cnblogs.com/amazingzoe/p/5848248.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!