码迷,mamicode.com
首页 >  
搜索关键字:blue    ( 1833个结果
Enum基础
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
[LeetCode] 桶排序的特殊解,例 Sort Color
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
bzoj 1567 [JSOI2008]Blue Mary的战役地图题解
此题时限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
jquery javascript写的loading
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
Reverse Words in a String
问题描述 Given an input string, reverse the string word by word. For example, Given s = "the sky is blue", return "blue is sky the". 解决方案public class Solution { public String reverseWord...
分类:其他好文   时间:2014-08-31 23:04:42    阅读次数:232
leetcode - [1]Reverse Words in a String
Question: Reverse Words in a StringGiven an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky ...
分类:其他好文   时间:2014-08-31 17:03:21    阅读次数:232
Leetcode
package leetcode;import java.util.Stack;/** * Created by smallstrong on 14-8-31. *///For example,// Given s = "the sky is blue",// retur...
分类:其他好文   时间:2014-08-31 14:26:01    阅读次数:173
【LeetCode】Reverse Words in a String
【题意】 给定一个字符串,把里面的单词逆序输出来。 例如:给定 s = "the sky is blue",返回 "blue is sky the"。 注意:接收的字符串开头和结尾可能有空格,但是返回时开头和结尾不能有空格;返回时每两个单词之间只能有一个空格。 【Java代码】 public class Solution { public String reverseWords(...
分类:其他好文   时间:2014-08-28 18:10:15    阅读次数:199
HDU-3533-Escape(BFS)
Problem Description The students of the HEU are maneuvering for their military training. The red army and the blue army are at war today. The blue army finds that Little A is the spy of the red ar...
分类:其他好文   时间:2014-08-27 18:50:28    阅读次数:358
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!