传送门http://hihocoder.com/problemset/problem/1036Solution: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 struct Nod...
分类:
其他好文 时间:
2015-03-19 21:39:52
阅读次数:
194
Problem DescriptionWe have met so many problems on the tree, so today we will have a query problem on a set of trees. There are N nodes, each nod...
分类:
其他好文 时间:
2015-03-16 17:46:36
阅读次数:
282
后缀自动机简直难以理解TAT.....不过还好代码很短很好记...... 1 struct SAM 2 { 3 struct node 4 { 5 node*f; 6 node*s[26]; 7 int v; 8 nod...
分类:
其他好文 时间:
2015-03-15 12:17:26
阅读次数:
170
裸 1 #include 2 #include 3 #include 4 using namespace std; 5 6 struct node 7 { 8 int x, y, dis; 9 int flag;10 } a[200010];11 12 int cmp(nod...
分类:
其他好文 时间:
2015-03-13 09:16:35
阅读次数:
313
#include #include #include using namespace std;typedef struct Student { int id; char name[20]; char sex[20]; struct Student *next;}nod...
分类:
其他好文 时间:
2015-03-09 00:21:08
阅读次数:
153
一些命令和规则以及准备本次流程再 DigitalOcean上的vps上通过查看是否已经安装rpm -qa | grep nginx删除安装 #普通删除模式 rpm -e nginx #强力删除模式,如果使用上面命令删除时,提示有依赖的其它文件,则用该命令可以对其进行强力删除 rpm -e --nod...
分类:
数据库 时间:
2015-03-05 00:00:43
阅读次数:
255
不知道为什么第一天Node。js干的挺顺利的,回公司后就干的一点都不顺利,主要原因还是公司的网络的问题,使用的受限制的代理,不能直接使用NPM从远程下载模块,唉。node.js的模块加载顺序首先是从项目目录下的node_modules文件夹下查找,然后一级一级向上查找 ,可以在项目目录下使用 nod...
分类:
Web程序 时间:
2015-02-25 17:02:44
阅读次数:
204
题目 这道题是链表的简单应用,将两个有序链表合成一个有序链表。 思路是:表一,表二各取两个对象,分别指向current和next,进行交叉比较排序。Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nod...
分类:
其他好文 时间:
2015-02-11 12:48:27
阅读次数:
148
在上一篇关于Emysql pool (http://www.cnblogs.com/--00/p/4281938.html)的分析的最后提到现在的emysql_conn_mgr gen_server 进程属于单点,也就是所有的pool 的管理调度都是由一个进程来完成.如果在同一个Erlang nod...
分类:
数据库 时间:
2015-02-10 21:41:37
阅读次数:
364
1安装npmsudo apt-get install npmsudo apt-get install nodesudo apt-get install nodejs-legacy2安装expresssudo npm install -g expresssudo apt-get install nod...
分类:
Web程序 时间:
2015-01-26 18:53:45
阅读次数:
163