leetcode 75 Sort Colors ----- java

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.

click to show follow up.

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,2,3组成的数组,然后排序,要求只用一次进行排序,并且空间复杂度为O(1)。记录三个数字首次出现的位置即可。
public class Solution {
    public void sortColors(int[] nums) {
        int len = nums.length;
        int red_start = -1,white_start = -1, blue_start = -1;
        for( int i = 0;i<len;i++){
              if( nums[i] == 0 ){
                  if( red_start == -1){
                      if( white_start == -1 && blue_start == -1)
                          ;
                      else if( white_start == -1){
                          nums[i] = 2;
                          blue_start++;
                      }else if( blue_start == -1){
                          nums[i] = 1;
                          white_start++;
                      }else{
                          nums[i] = 2;
                          nums[blue_start] = 1;
                          nums[white_start] = 2;
                          blue_start++;
                          white_start++;
                      }
                      nums[0] = 0;
                      red_start = 0;
                  }else if( white_start == -1 && blue_start == -1)
                      ;
                  else if( white_start == -1){
                      nums[blue_start] = 0;
                      nums[i] = 2;
                      blue_start++;
                  }else if( blue_start == -1){
                      nums[white_start] = 0;
                      nums[i] = 1;
                      white_start++;
                  }else{
                      nums[white_start] = 0;
                      nums[blue_start] = 1;
                      nums[i] = 2;
                      white_start++;
                      blue_start++;
                  }
              }else if( nums[i] == 1 ){
                  if( white_start == -1 && blue_start == -1)
                      white_start = i;
                  else if( blue_start == -1){
                      ;
                  }else if( white_start == -1){
                      nums[i] = 2;
                      nums[blue_start] = 1;
                      white_start = blue_start;
                      blue_start++;
                  }else{
                      nums[blue_start] = 1;
                      nums[i] = 2;
                      blue_start++;
                  }
              }else{
                  if( blue_start == -1)
                      blue_start = i;
              }
        }
    }
}
原文地址:https://www.cnblogs.com/xiaoba1203/p/5965440.html