75. Sort Colors
Posted The Tech Road
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了75. Sort Colors相关的知识,希望对你有一定的参考价值。
https://leetcode.com/problems/sort-colors/description/
class Solution { public: void sortColors(vector<int>& nums) { int i = 0, j = nums.size()-1; for (int k = 0; k <= j; ) { if (nums[k] == 0) swap(nums[i++], nums[k++]); else if (nums[k] == 2) swap(nums[k], nums[j--]); else k++; } } };
以上是关于75. Sort Colors的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 75. 颜色分类(Sort Colors)