Skip to content

Latest commit

 

History

History
83 lines (76 loc) · 1.93 KB

颜色分类.md

File metadata and controls

83 lines (76 loc) · 1.93 KB

给定一个包含红色、白色和蓝色,一共 n 个元素的数组,原地对它们进行排序,使得相同颜色的元素相邻,并按照红色、白色、蓝色顺序排列。

此题中,我们使用整数 0、 1 和 2 分别表示红色、白色和蓝色。

进阶:

  • 你可以不使用代码库中的排序函数来解决这道题吗?
  • 你能想出一个仅使用常数空间的一趟扫描算法吗?

示例 1:

输入:nums = [2,0,2,1,1,0]
输出:[0,0,1,1,2,2]

示例 2:

输入:nums = [2,0,1]
输出:[0,1,2]

计数器法

// 记录0、1、2出现的次数,然后遍历重写数组
/**
 * @param {number[]} nums
 * @return {void} Do not return anything, modify nums in-place instead.
 */
var sortColors = function(nums) {
  let count0 = count1 = count2 = 0
  nums.forEach(item => {
    if (item === 0) {
      count0++
    } else if (item === 1) {
      count1++
    } else {
      count2++
    }
  })
  nums.forEach((item, index) => {
    if (count0) {
      nums[index] = 0
      count0--
    } else if (count1) {
      nums[index] = 1
      count1--
    } else {
      nums[index] = 2
      count2--
    }
  })
};

双指针法

/**
 * @param {number[]} nums
 * @return {void} Do not return anything, modify nums in-place instead.
 */
var sortColors = function(nums) {
  // 0需要放置的下标位置
  let index0 = 0
  // 2需要放置的下标位置
  let index2 = nums.length - 1
  for (let i = 0; i < index2 + 1; i++) {
    if (nums[i] === 0) {
      // 交换值,index0进1
      nums[i] = nums[index0]
      nums[index0] = 0
      index0++
    } else if (nums[i] === 2) {
      // 交换值,index2退1因为不知道交换
      nums[i] = nums[index2]
      nums[index2] = 2
      index2--
      // 因为不知道交换过来的是什么值,重新走一遍i
      i--
    }
  }
};