Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the". click to show clarification.C...
分类:
其他好文 时间:
2014-08-20 13:59:42
阅读次数:
229
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the". 1 public class Solution { 2 ....
分类:
编程语言 时间:
2014-08-19 23:43:45
阅读次数:
209
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".click to show clarification.Cl...
分类:
其他好文 时间:
2014-08-19 20:38:25
阅读次数:
239
IE6、IE7、IE8、Firefox兼容性CSS HACK代码+示例整理关于IE6、IE7、IE8、Firefox兼容性CSS HACK问题1.区别IE和非IE浏览器CSS HACK代码 #divcss5{background:blue; /*非IE 背景藍色*/(音乐按摩椅)background...
分类:
Web程序 时间:
2014-08-19 15:56:44
阅读次数:
168
指针数组 && 数组指针
char (*ptr)[5]; //定义一个指向数组指针ptr,指向包含5个char类型的数组
char *a[5]; //定义一个指针数组a,包含5个char*类型指针
#include
int main(void)
{
char *a[5]={"red","white","blue","dark","green"};
pri...
分类:
编程语言 时间:
2014-08-19 12:55:44
阅读次数:
230
问题:给定一个输入字符串,字符串字反向词。例如s = "the sky is blue",返回 "blue is sky the".我的答案:class Solution {public: void reverseWords(string &s) { if(s.size() r...
分类:
编程语言 时间:
2014-08-18 23:22:23
阅读次数:
450
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".
click to show clarification.
...
分类:
其他好文 时间:
2014-08-18 16:20:32
阅读次数:
142
1. js没有块级作用域
if(true){
var color ="blue";
}
alert(color); //"blue"
for (var i=0; i<10 i++){
doSomething(i);
}
alert(i
对于块级作用域的语言来说,for语句初始化变量的表达所定义的变量,只会存在于循环的环境中。而对于JavaScript来说,由for语句创建的变量i即使在...
分类:
编程语言 时间:
2014-08-18 12:31:24
阅读次数:
171
html:on mouseover="show(this,'red')";on mouseout="show(this,'blue')";onclik="show(this,'yellow')";JS:这个例题是在看一节JS视频的时候看到的,如果是让我来写,我就会每一个事件调用一个函数。这样代码会比...
分类:
其他好文 时间:
2014-08-17 21:20:22
阅读次数:
180
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4822Problem DescriptionThree countries, Red, Yellow, and Blue are in war. The map of battlefield is a t...
分类:
其他好文 时间:
2014-08-16 16:19:50
阅读次数:
275