zoukankan      html  css  js  c++  java
  • Sort Colors [LeetCode]

    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.

    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?

    Summary:  Accepted at the first submission. Nice.

     1     void sortColors(int A[], int n) {
     2         int red_idx = -1;
     3         int blue_idx = n;
     4         for(int i = 0; i < n; i ++) {
     5             if(i == blue_idx)
     6                 break;
     7             if(A[i] == 0){
     8                 int tmp = A[i];
     9                 A[i] = A[++red_idx];
    10                 A[red_idx] = tmp;
    11             }
    12             
    13             if(A[i] == 2) {
    14                 int tmp = A[i];
    15                 A[i] = A[-- blue_idx];
    16                 A[blue_idx] = tmp;
    17                 i--;
    18             }
    19         }
    20     }
  • 相关阅读:
    Mybatis 接口绑定
    Spring AOP
    Spring 基础使用
    Java 类的生命周期
    Mybatis 测试延迟加载
    Mybatis
    eclipse 常用jar包总结
    Web 过滤器参数设置问题
    Web 单元测试
    zabbix监控-自定义监控与报警(二)
  • 原文地址:https://www.cnblogs.com/guyufei/p/3448819.html
Copyright © 2011-2022 走看看