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 };
  • 相关阅读:
    潭州课堂25班:Ph201805201 django 项目 第二课 git 版本控制 (课堂笔记)
    HTML中的转义字符
    Java防止SQL注入
    Web很脆弱,SQL注入要了解
    防止sql注入:替换危险字符
    Hadoop HA详解
    java代码---charAt()和toCharry()的用法
    java代码-----计算器,界面+功能+boolean
    java代码-----运用endWith()和start()方法
    java代码---indexOf()方法
  • 原文地址:https://www.cnblogs.com/amazingzoe/p/5883648.html
Copyright © 2011-2022 走看看