37.Sort Colors(颜色排序)
2020-12-13 03:25
标签:evel array medium example 元素 for integer not inpu ??Medium Given an array with n objects colored red, white or blue, sort them in-place 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. Example: Follow up: ??三路快排的思想,以1作为标志,比1小的放在一边,比1大的放在另一边一边,但是要注意的一点是大的元素交换后由于该元素没有和标志1作比较,因此需要i=i-1。 37.Sort Colors(颜色排序) 标签:evel array medium example 元素 for integer not inpu 原文地址:https://www.cnblogs.com/yjxyy/p/11074859.htmlLevel:
题目描述:
Input: [2,0,2,1,1,0]
Output: [0,0,1,1,2,2]
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.思路分析:
代码:
public class Solution{
public void sortColors(int []nums){
if(nums==null||nums.length==0)
return;
int left=0;
int right=nums.length-1;
for(int i=0;i1){
nums[i]=nums[right];
nums[right]=2;
right--;
i=i-1;//交换过来的元素没有和1比较过,所以i减一
}
}
}
}
上一篇:Spring注解驱动开发之web
下一篇:Python对文件的读写操作