zoukankan      html  css  js  c++  java
  • [Leetcode] 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.

    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?

    use two pointers pointing at start and end, these two pointers are used to indicate the boundary of 0, 1, 2. While iterating, current item is swapped to corresponding boundary position.

     1 def sortColors(nums):
     2     left = 0
     3     right = len(nums) - 1
     4     i = 0    
     5     while i <= right:
     6         if nums[i] == 0:
     7             nums[i], nums[left] = nums[left], nums[i]
     8             i += 1
     9             left += 1
    10         elif nums[i] == 1:
    11             i += 1
    12         elif nums[i] == 2:
    13             nums[i], nums[right] = nums[right], nums[i]
    14             right -= 1
     
  • 相关阅读:
    简单函数调用分析
    从函数层面看栈溢出
    C语言漏洞基础(一)
    C语言函数篇(一)
    开发一种填表机器
    阿米洛varmilo键盘
    Flops
    助力高校计算机教育 —— 码云为老师推出免费高校版
    Numerical Methods LetThereBeMath
    Git Cookbook
  • 原文地址:https://www.cnblogs.com/kanone/p/5049998.html
Copyright © 2011-2022 走看看