LeetCode: Sort ColorsGiven an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colo...
分类:
其他好文 时间:
2014-09-04 22:10:20
阅读次数:
173
//===作用链域======var color = "blue";/*function changeColor(){ if(color=="blue"){ color ="red"; }else{ color="yellow"; }}changeColor();alert("Color is .....
分类:
编程语言 时间:
2014-09-04 14:42:59
阅读次数:
169
#include "stdafx.h"#include #include /*#define FOREGROUND_BLUE 0x0001 // text color contains blue.#define FOREGROUND_GREEN 0x0002 // text col...
分类:
其他好文 时间:
2014-09-04 14:42:29
阅读次数:
180
#pragmamark-将16进制字符串转换成UIColor-(UIColor*)generateColorObjectWithHex:(NSString*)hexString{unsignedintred=0,green=0,blue=0;NSRangerange={0,2};range.location=0;NSString*redString=[hexStringsubstringWithRange:range];NSScanner*redScanner=[NSScannerscann..
分类:
移动开发 时间:
2014-09-04 03:05:08
阅读次数:
170
Sort ColorsGiven an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the or...
分类:
其他好文 时间:
2014-09-03 16:40:46
阅读次数:
231
enum ColorE { RED, GREEN, BLUE; } public class GetEnumContent { public static void main(String[] args) { // ColorE color=ColorE.BLUE; // System.out.pr...
分类:
其他好文 时间:
2014-09-03 12:31:26
阅读次数:
208
Sort ColorsGiven an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the or...
分类:
其他好文 时间:
2014-09-02 01:34:23
阅读次数:
262
此题时限10秒,顿时惊呆,想到一个n^5解法,果断去写。用f[i1][j1][i2][j2]表示从a矩阵的(i1,j1)和b矩阵的(i2,j2)开始哪一行有多少相同的。然后再枚举i1,i2,j1,j2然后判断有几行。 1 #include 2 #include 3 using namespace s...
分类:
Web程序 时间:
2014-09-01 22:39:53
阅读次数:
402
varmask="<divid=‘m‘></div>";varloading="<divid=‘loadingDiv‘style=‘‘><imgsrc=‘../../theme/blue/p_w_picpaths/blue/loading-blue.gif‘></img>主备切换中.......</div>";$("body").prepend(loading).prepend(mask);$("#loadingDiv").cs..
分类:
编程语言 时间:
2014-09-01 19:47:04
阅读次数:
381
如题:转置一个字符串,需要其中的单词正常例如:Given s = "the sky is blue",return "blue is sky the".需要说明的是:1、输入字符串可能会出现:前导空格,后置空格,要求输出的不能有前导空格和后置空格。2、输入的语句中可能有两个单词之间出现多个空格,输出...
分类:
其他好文 时间:
2014-09-01 17:09:23
阅读次数:
167