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;
                  }
            }
        }
    }
  • 相关阅读:
    用vs调试sql存储过程
    Html插入Flash.object.embed.swf各个参数值详解介绍[等比例缩放]
    SQL SERVER分区具体例子详解
    C#身份证识别相关技术
    C#调用Java方法(详细实例)
    Visual Studio各版本工程文件之间的转换
    彻底解决asp.net mvc5.2.2:vs2013 cshtml视图文件报错(当前上下文中不存在名称“model”,ViewBag,Url)
    HTML 5 Web 本地存储
    让WeuiPicker隐藏日期中的日,只保留年月
    javascript获取值
  • 原文地址:https://www.cnblogs.com/xiaoba1203/p/5965440.html
Copyright © 2011-2022 走看看