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 };
  • 相关阅读:
    电商概念
    Linux知识点(二)
    linux知识点
    笔记8月20日
    考勤运行提示‘Length of values (115) does not match length of index (116) >>> ’
    数据透视表+数据条
    CCRC软件开发评审-材料应该怎么准备
    python os.walk函数
    httprunner 断言报错 expect_value 和check_value类型不一致
    自动化-Yaml文件读取函数封装
  • 原文地址:https://www.cnblogs.com/amazingzoe/p/5883648.html
Copyright © 2011-2022 走看看