zoukankan      html  css  js  c++  java
  • Sort Colors

    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?

     
    Analyse: two-pass
     1 class Solution {
     2 public:
     3     void sortColors(vector<int>& nums) {
     4         // put all 0s into correct positions
     5         int notZero = 0, zero = nums.size() - 1;
     6         while (notZero < zero) {
     7             if (!nums[notZero]) notZero++;
     8             else if (nums[zero]) zero--;
     9             else {
    10                 swap(nums[notZero++], nums[zero--]);
    11             }
    12         }
    13         
    14         // put all 2s into correct positions
    15         int notTwo = nums.size() - 1;
    16         while (notZero < notTwo) {
    17             if (nums[notZero] != 2) notZero++;
    18             else if (nums[notTwo] == 2) notTwo--;
    19             else {
    20                 swap(nums[notZero++], nums[notTwo--]);
    21             }
    22         }
    23     }
    24 };

    Analyse: one-pass

     1 class Solution {
     2 public:
     3     void sortColors(vector<int>& nums) {
     4         if (nums.size() < 2) return;
     5         
     6         int left = 0, right = nums.size() - 1;
     7         int notZero = 0, notTwo = nums.size() - 1;
     8         while (left <= right) {
     9             if (nums[left] == 2)
    10                 swap(nums[left], nums[notTwo--]);
    11             else if (nums[right] == 0)
    12                 swap(nums[right], nums[notZero++]);
    13             else {
    14                 left++;
    15                 right--;
    16             }
    17         }
    18     }
    19 };
  • 相关阅读:
    Python安装
    solr集群solrCloud的搭建
    redis单机及其集群的搭建
    maven实现tomcat热部署
    maven发布时在不同的环境使用不同的配置文件
    nexus 的使用及maven的配置
    java 自定义注解以及获得注解的值
    Jenkins学习之——(4)Email Extension Plugin插件的配置与使用
    Jenkins学习之——(3)将项目发送到tomcat
    注意Tengine(Nginx) proxy_pass之后的"/"
  • 原文地址:https://www.cnblogs.com/amazingzoe/p/5883648.html
Copyright © 2011-2022 走看看