zoukankan      html  css  js  c++  java
  • 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?

    思路:

    保持两个指针,一个指向最前端,一个指向最后端,然后扫描,遇到0,2就交换元素

    package sort;
    
    public class SortColors {
    
        public void sortColors(int[] nums) {
            int n;
            if (nums == null || (n = nums.length) < 2) return;
            int zeroIndex = 0;
            int twoIndex = n - 1;
            for (int i = 0; i <= twoIndex; ++i) {
                if (nums[i] == 0) {
                    swap(nums, i, zeroIndex);
                    ++zeroIndex;
                } else if (nums[i] == 2) {
                    swap(nums, i, twoIndex);
                    --twoIndex;
                    --i;
                }
            }
        }
        
        private void swap(int[] A, int i, int j) {
            int tmp = A[i];
            A[i] = A[j];
            A[j] = tmp;
        }
        
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            int[] A = { 2, 1, 0, 1, 2, 0, 0, 2, 1, 1, 2, 0 };
            SortColors s = new SortColors();
            s.sortColors(A);
            for (int i : A)
                System.out.println(i);
        }
    
    }
  • 相关阅读:
    LiteFlow 按照规则配置进行复杂流转
    ImageCombiner 服务端合图
    forest HTTP调用API框架
    smart-doc API文档生成工具
    YAML语法和用法
    拓展mybatisPlus 支持批量插入
    ModbusRTU控制SV660P说明
    .NET RulesEngine(规则引擎)
    Win10自动更新有效强制永久关闭
    Redis 到底是怎么实现“附近的人”这个功能的?
  • 原文地址:https://www.cnblogs.com/null00/p/5093427.html
Copyright © 2011-2022 走看看