LeetCode刷题笔记 75. 颜色分类

    xiaoxiao2022-07-03  133

    题目描述

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

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

    注意: 不能使用代码库中的排序函数来解决这道题。

    示例:

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

    总结

    三指针 如果遇到 0,则放到数组的前端。 如果遇到 2,则放到数组的后端。 如果遇到 1,则不处理。

    我记得 算法 里面有例题解决的也是这个问题,荷兰排序(快排)

    Sample & Demo Code

    class Solution { public void sortColors(int[] nums) { int low = -1, high = nums.length; int index = 0; while(index < high) { if(nums[index] == 0) swap(nums, ++low, index++); else if(nums[index] == 2) swap(nums, --high, index); else index++; } } private void swap(int[] nums, int left, int right) { int temp=nums[left]; nums[left]=nums[right]; nums[right]=temp; } }
    最新回复(0)