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;
                  }
            }
        }
    }
  • 相关阅读:
    awk学习
    Redis快速入门
    Redis源码研究—基础知识
    稳定模式在RESTful架构中的应用
    解析Google集群资源管理系统Omega
    在Ubuntu 14.04 64bit上安装百度云Linux客户端BCloud
    在Ubuntu 14.04 64bit上安装Markdown和绘图软件Haroopad
    在Ubuntu 14.04 64bit上安装网易云音乐Linux版本(最新官方版)
    各数据库连接maven配置
    maven POM.xml 标签详解
  • 原文地址:https://www.cnblogs.com/xiaoba1203/p/5965440.html
Copyright © 2011-2022 走看看