143. Sort Colors II
最后更新
一刷
class Solution {
    public void sortColors2(int[] colors, int k) {
        // write your code here
        if (colors.length <= 1) return;
        int start = 0;
        int end = colors.length - 1;
        int min = 1;
        int max = k;
        while (start < end) {
            int temp = start;
            while (temp <= end) {
                if (colors[temp] == min) {
                    swap(start ++, temp ++, colors);
                } else if (colors[temp] == max) {
                    swap(end --, temp, colors);
                } else {
                    temp ++;
                }
            }
            min ++;
            max --;
        }
    }
    public void swap(int l, int r, int[] colors) {
        int temp = colors[l];
        colors[l] = colors[r];
        colors[r] = temp;
    }
}
												
											143. Sort Colors II的更多相关文章
- Lintcode: Sort Colors II   解题报告
		
Sort Colors II 原题链接: http://lintcode.com/zh-cn/problem/sort-colors-ii/# Given an array of n objects ...
 - Lintcode: Sort Colors II
		
Given an array of n objects with k different colors (numbered from 1 to k), sort them so that object ...
 - LeetCode: Sort Colors 解题报告
		
Sort ColorsGiven an array with n objects colored red, white or blue, sort them so that objects of th ...
 - Sort Colors I & II
		
Given an array with n objects colored red, white or blue, sort them so that objects of the same colo ...
 - LeetCode 75. 颜色分类(Sort Colors) 30
		
75. 颜色分类 75. Sort Colors 题目描述 给定一个包含红色.白色和蓝色,一共 n 个元素的数组,原地对它们进行排序,使得相同颜色的元素相邻,并按照红色.白色.蓝色顺序排列. 此题中, ...
 - 【LeetCode】Sort Colors
		
Sort Colors Given an array with n objects colored red, white or blue, sort them so that objects of t ...
 - 52. Sort Colors   &&  Combinations
		
Sort Colors Given an array with n objects colored red, white or blue, sort them so that objects of t ...
 - 75. Sort Colors(颜色排序)  from LeetCode
		
75. Sort Colors 给定一个具有红色,白色或蓝色的n个对象的数组,将它们就地 排序,使相同颜色的对象相邻,颜色顺序为红色,白色和蓝色. 这里,我们将使用整数0,1和2分别表示红色, ...
 - 【LeetCode】75. Sort Colors (3 solutions)
		
Sort Colors Given an array with n objects colored red, white or blue, sort them so that objects of t ...
 
随机推荐
- office2016 部分截图
			
哈啊哈哈啊哈 看看吧~~~~~~~~~~~~~~~~~
 - js中构造字符串若放入Grails中gsp的<g:link>标签出错
			
Grails的ajax使用json格式返回,在js中构造字符串时若放入<g:link>标签,字符串构造就会错误 如下就会发生错误,导致回调函数无法执行 function show(obj) ...
 - php数组遍历 使用while循环
			
while() 通常和 list(),each()配合使用. $colors= array('red','blue','green','yellow'); while(list($key,$val)= ...
 - [jobdu]包含min函数的栈
			
老题,两个stack.其中一个维护min值就行了. #include <iostream> #include <stack> using namespace std; int ...
 - Macbook配置adb环境
			
配置adb命令 http://stackoverflow.com/questions/5526470/trying-to-add-adb-to-path-variable-osx http://sta ...
 - hdu4632Palindrome subsequence
			
http://acm.hdu.edu.cn/showproblem.php?pid=4632 TLE了N次 原因居然是取模次数太多了..! 这数据卡的好紧 还是我写的太搓..828ms挤过 s[i]= ...
 - MVC——数据库增删改查(aspx)
			
MVC: V(View) :视图→就是页面的模板 C(Control): 控制器→客户主要面对的就是控制器, M(Model):模板→在模板里面主要就是写关于数据库的各种增删改查的方法 它们之间的关系 ...
 - ASP.NET 導入Excel
			
常常碰到這種需求,為了避免自己每次寫Code都要東翻西找Sample,乾脆丟上來當備份 此外,也為了方便網路上的大大們Copy Paste方便,小弟已經順便標示要複製程式碼的起始結束位置 在歡樂的貼程 ...
 - Linux Kernel 本地内存损坏漏洞
			
漏洞名称: Linux Kernel 本地内存损坏漏洞 CNNVD编号: CNNVD-201310-663 发布时间: 2013-11-05 更新时间: 2013-11-05 危害等级: 漏洞类 ...
 - JAVA与.NET的相互调用——利用JNBridge桥接模式实现远程通讯
			
分布式开发的历史 利用Remote方式调用远程对象实现服务器与客户端之间通讯是一种常用的网络开发方式,在.NET与JAVA开发当中,对Remote远程对象早已有着足够的支持(对Remote远程对象调用 ...