zoukankan      html  css  js  c++  java
  • 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;
                  }
            }
        }
    }
  • 相关阅读:
    经典脚本集合
    Crystal Report 注册号
    Linux top命令简介
    sysctl.conf优化方案(完整)
    vi入门学习(转载)
    linux 如何查看目录的剩余空间大小?
    python3安装pip3
    jsonCpp的readme文档
    第15天android:使用sqlite
    《mysql必知必会》笔记
  • 原文地址:https://www.cnblogs.com/xiaoba1203/p/5965440.html
Copyright © 2011-2022 走看看