CSS样式的优势
span{
color:blue;
}
慕课网,超酷的互联网、IT技术免费学习平台,创新的网络一站式学习、实践体验;
服务及时贴心,内容专业、有趣易学。专注服务互联网工程师快速成为技术高手!...
分类:
Web程序 时间:
2014-11-14 22:51:15
阅读次数:
346
javascript闭包(Closure) 闭包官方的解释:闭包指的是一个拥有许多变量和绑定了这些变量的环境的表达式(通常是一个函数),因而这些变量也是该表达式的一部分。 要理解闭包,首先理解两点:变量的作用域以及作用域链, 例: var color = "blue"; fun...
分类:
编程语言 时间:
2014-11-13 18:36:40
阅读次数:
185
问题描述:
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.
Here, we will use the in...
分类:
其他好文 时间:
2014-11-12 17:57:56
阅读次数:
174
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:
其他好文 时间:
2014-11-12 16:21:04
阅读次数:
219
1.(原文)问题描述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 clarif...
分类:
其他好文 时间:
2014-11-11 16:07:39
阅读次数:
161
array_diff_key() 例子 1, 'red'=> 2, 'green'=> 3, 'purple' => 4);$array2 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan'=> 8);var_dump(array_dif...
分类:
编程语言 时间:
2014-11-10 21:35:31
阅读次数:
295
指针数组 && 数组指针
char *a[5];
//定义一个指针数组, 数组的元素都是char *指针类型。初始化也可以在里面存放字符或字符串。a的类型是char *[5]
//若char *a[5]={"red","white","blue","dark","green"};
//a在这里的类型是char *[],实质上是一个二级指针。也就是说a所代表的那块内存里面存放着的是数组...
分类:
编程语言 时间:
2014-11-10 19:58:28
阅读次数:
265
题目大意:给定两个矩阵,求最大公共子正方形边长
首先二分答案 然后Check的时候先把A矩阵的所有边长为x的子正方形存在哈希表里 然后枚举B矩阵的每个子正方形查找
注意二维哈希的时候横竖用的两个BASE不能一样 否则当两个矩阵关于对角线对称的时候会判断为相等
尼玛我的哈希表居然比map慢……不活了
#include
#include
#include
#include
#include
#...
分类:
Web程序 时间:
2014-11-10 13:51:02
阅读次数:
215
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".思路:就是对首尾空格和中间连续空格的处理。为了方便处理,在s...
分类:
其他好文 时间:
2014-11-09 19:20:19
阅读次数:
168
publicclassTestEnum{/*最普通的枚举*/publicenumColorSelect{red,green,yellow,blue;}/*枚举也可以象一般的类一样添加方法和属性,你可以为它添加静态和非静态的属性或方法,这一切都象你在一般的类中做的那样.*/publicenumSeas...
分类:
编程语言 时间:
2014-11-09 17:49:08
阅读次数:
186