码迷,mamicode.com
首页 >  
搜索关键字:surface book    ( 5453个结果
KMP模式匹配算法:Oulipo
DescriptionThe French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter'e'. He was a member of the Oulipo group. ...
分类:编程语言   时间:2015-04-20 22:27:58    阅读次数:194
【转载】Relevant literature
Relevant literature Book chapter about the philosophy behind deep architecture model, motivating them in the context of Artificial Intelligence
分类:其他好文   时间:2015-04-20 20:49:14    阅读次数:263
When you are old
When you are old——W.B Yeats (William ButlerYeats) When you are old and grey and full of sleep, And nodding by the fire, take down this book, And ...
分类:其他好文   时间:2015-04-20 14:44:08    阅读次数:101
URAL - 1786 Sandro's Biography
Sandro's Biography Time Limit: 1000MS   Memory Limit: 65536KB   64bit IO Format: %I64d & %I64u Submit Status Description Leogius was searching in a library for a book r...
分类:其他好文   时间:2015-04-20 09:28:24    阅读次数:196
18、Java中可变参数
从JDK 1.5之后,Java允许定义形参可变的参数例如:public void test(int a,String ... books){ for(String book:books){ System.out.println(book) }}调用:test(1...
分类:编程语言   时间:2015-04-19 21:06:11    阅读次数:166
HDU 1272 小希的迷宫(并查集)
题目大意: 题目说的是,给你一些边的关系来构成一棵树,然后让你求出这在这个生成树中是否有环,也就是说,对于树上的任意一个节点,是否存在从这个点到其余节点的第二条路径。解题思路: 裸裸的并查集,我们只需要将每次输入的边的关系进行一个合并,然后用book[]数组去标记哪些点已经在这个生成树出...
分类:其他好文   时间:2015-04-19 15:51:20    阅读次数:110
迷宫(深度搜索dfs)
首先输入一个迷宫,用0,1表示,如:m行n列的迷宫 5 4 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0表示通路,1表示障碍。 然后输入起始点的坐标和终止点的坐标,求从起点到终点最少的步数。 用dfs,代码如下: #include int book[51][51],p[51][51]; int min=99999,endx,endy;/...
分类:其他好文   时间:2015-04-19 11:40:55    阅读次数:187
Chapter 15 - Multithread programming
The content and code of this article is referenced from book Pro C#5.0 and the .NET 4.5 Framework by Apress. The intention of the writing is to review...
分类:其他好文   时间:2015-04-18 21:49:47    阅读次数:218
转 解决应用服务器变为集群后的Session问题
转自http://book.51cto.com/art/201405/439557.htm先来看一下什么是Session。用户使用网站的服务,基本上需要浏览器与Web 服务器的多次交互。HTTP 协议本身是无状态的,需要基于HTTP 协议支持会话状态(Session State)的机制。而这样的机制...
分类:其他好文   时间:2015-04-17 22:12:13    阅读次数:220
别名现象,java对象之间的相互赋值
请看一下代码import java.util.*;class book{ static int c = null;}public static void main(String[] args){ Book book1 = new book(); Book book2 = new book();...
分类:编程语言   时间:2015-04-17 15:31:10    阅读次数:207
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!