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
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——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
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
从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
题目大意: 题目说的是,给你一些边的关系来构成一棵树,然后让你求出这在这个生成树中是否有环,也就是说,对于树上的任意一个节点,是否存在从这个点到其余节点的第二条路径。解题思路: 裸裸的并查集,我们只需要将每次输入的边的关系进行一个合并,然后用book[]数组去标记哪些点已经在这个生成树出...
分类:
其他好文 时间:
2015-04-19 15:51:20
阅读次数:
110
首先输入一个迷宫,用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
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
转自http://book.51cto.com/art/201405/439557.htm先来看一下什么是Session。用户使用网站的服务,基本上需要浏览器与Web 服务器的多次交互。HTTP 协议本身是无状态的,需要基于HTTP 协议支持会话状态(Session State)的机制。而这样的机制...
分类:
其他好文 时间:
2015-04-17 22:12:13
阅读次数:
220
请看一下代码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