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
Red is current min. Yellow is sorted list. Blue is current item.(picture from wikipedia, a little too fast)10 numbers. Sort as ascend.1. Find the min ...
分类:
其他好文 时间:
2014-11-09 16:40:27
阅读次数:
225
function SuperType(name) { this.name = name; this.colors = ["red", "blue", "green"];}SuperType.prototype.sayName = function() { alert(this.na...
分类:
编程语言 时间:
2014-11-08 13:31:22
阅读次数:
151
Spannable style = new SpannableStringBuilder(commentsHtml); try { style.setSpan(new ForegroundColorSpan(Color.BLUE),startIndex,endIndex...
分类:
其他好文 时间:
2014-11-08 13:28:51
阅读次数:
216
============问题描述============ 基本源于网上流传很多的画正弦的代码。初始时,整个背景都是黑的,在画图的时候使用下面代码倒是可以把背景变了Canvascanvas=sfh.lockCanvas(null);
canvas.drawColor(Color.BLUE);//清除画...
分类:
其他好文 时间:
2014-11-08 13:28:01
阅读次数:
215
#include #define RED 0x0004 #define GREEN 0x0002 #define BLUE 0x0001 #define WHITE RED|GREEN|BLUE ...