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     }
  • 相关阅读:
    mongodb 添加用户
    mongo 安装
    python 操作redis
    python 安装 redis
    redis 命令文档网址
    redis 事务
    Redis key命令
    手动卸载的vs2010
    个人封装JavaScript函数
    女学-温砚如老师的人生女学
  • 原文地址:https://www.cnblogs.com/guyufei/p/3448819.html
Copyright © 2011-2022 走看看