鱼C论坛

 找回密码
 立即注册
查看: 1640|回复: 0

[学习笔记] leetcode 75. Sort Colors

[复制链接]
发表于 2019-9-30 13:09:27 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
  1. Given an array with n objects colored red, white or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the order red, white and blue.

  2. Here, we will use the integers 0, 1, and 2 to represent the color red, white, and blue respectively.

  3. Note: You are not suppose to use the library's sort function for this problem.

  4. Example:

  5. Input: [2,0,2,1,1,0]
  6. Output: [0,0,1,1,2,2]
  7. Follow up:

  8. A rather straight forward solution is a two-pass algorithm using counting sort.
  9. 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.
  10. Could you come up with a one-pass algorithm using only constant space?
复制代码

  1. class Solution {
  2.     public void sortColors(int[] nums) {
  3.         if(nums.length == 0 || nums.length == 1) return;
  4.         int[] arr = new int [3];
  5.         
  6.         for(int i = 0; i< nums.length; i++){
  7.             
  8.             arr[nums[i]]++;
  9.         }
  10.         int count = 0;
  11.         int i = 0;
  12.         while(count != 3){
  13.             while(arr[count] != 0) {
  14.                 arr[count]--;
  15.                 nums[i++] = count;
  16.             }
  17.             count++;
  18.         }
  19.         
  20.     }
  21. }
复制代码

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-1 23:44

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表