The registration of callback functions is very common in JavaScript web programming, for example to attach user interface event handlers (such as oncl...
分类:
编程语言 时间:
2014-08-18 02:48:43
阅读次数:
465
说明:转自国外博客:欢迎查阅原作该实例较新,简明易懂,值得新手借鉴以gmail为例,注意:1.通过TLS方式发送 1 package com.mkyong.common; 2 3 import java.util.Properties; 4 5 import javax.mail.Messa...
分类:
编程语言 时间:
2014-08-18 00:00:23
阅读次数:
340
一、简单介绍ADO.NET
System.Data:DataTable,DataSet,DataRow,DataColumn,DataRelation,Constraint
System.Data.Common(各种数据访问类的基类和接口):DataColumnMapping,DataTableMapping
System.Data.SqlClient(对Sql Server进行操作的数据访...
分类:
数据库 时间:
2014-08-17 18:36:42
阅读次数:
304
To find the most common words, we can apply the DSU pattern; most_common takes a histogram and returns a list of word-frequency tuples, sorted in reve...
分类:
其他好文 时间:
2014-08-17 17:00:32
阅读次数:
180
Description
A common pastime for poker players at a poker table is to shuffle stacks of chips. Shuffling chips is performed by starting with two stacks of poker chips, S1 and S2, each stack contain...
分类:
其他好文 时间:
2014-08-16 23:51:21
阅读次数:
505
上篇回顾
本篇名言:奋斗、寻觅、发现,而不屈服。[诗人丁尼生]
上篇中,我们学习了Box2d物理引擎的三大模块之一的collision模块,该模块主要包含形状shape,碰撞函数和动态树等概念。
这次蛤蟆接着学习dynamics模块。
理论介绍
Dynamics模块是Box2d引擎中最复杂的,也是基本上我们打交道最多的模块了。该模块建立在common和collis...
分类:
其他好文 时间:
2014-08-16 11:11:20
阅读次数:
228
上篇回顾
本篇名言:绝不测量山的高度─除非你已到达顶峰,那时你就会知道山有多低。 [哈马绍]
上篇中,我们学习了Box2d物理引擎的三大模块之一的common模块,该模块主要包含设置,内存管理和向量数学。
这次蛤蟆接着学习collison模块。
理论介绍
这个collision模块包括了shapes和函数。同时包括一个动态树和broad-phase(蛤蟆不知道怎么解释这...
分类:
其他好文 时间:
2014-08-16 09:48:50
阅读次数:
203
spoj1811LCS
问两个字符串最长公共子串。
做法很简单。匹配成功,则tl++,失败,从父指针回退,tl=t[now].len。
从这题可以清楚了解后缀自动机fa指针的性质:
指向一个状态,这个状态的接受串s[x..x+i]是与当前状态的接受串后缀s[j-i..j]匹配是最长的一个。
这里是不是发现了一个和KMP很像的性质?
KMP在失配时通过next数组回退,那么这...
分类:
其他好文 时间:
2014-08-15 21:11:29
阅读次数:
281
1、在Ubuntu下创建hadoop用户组和用户2、在Ubuntu下安装JDK(可以在官网下载linux包然后解压安装)3、hadoop下载:http://www.apache.org/dyn/closer.cgi/hadoop/common/因为64位ubuntu需要编译源文件:故下载hadoop...
分类:
其他好文 时间:
2014-08-15 17:29:09
阅读次数:
241
1. [代码]PingYinUtil package oa.common.utils;import net.sourceforge.pinyin4j.PinyinHelper;import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;im....
分类:
编程语言 时间:
2014-08-15 15:58:39
阅读次数:
354