最后两点怎么搞都要30s+,但是我不会什么优化啊…暂时就这样吧。Dinic的时间复杂度是O(N^2*M)这题和TDL的幼儿园模板是一样的。这次写网络流给自己计时了,大约是40min左右,后来都跑去倒腾后面两组数据去了…program profit;type ptype=^node; node...
分类:
其他好文 时间:
2014-07-14 08:27:24
阅读次数:
235
node.js的安装下载了.tar.gz格式的源码,tar zxvf *.tar.gz$ cd node-*$ ./configure --prefix=/usr/local/node$ make$ make install配置Node.js$ cp /usr/local/node/bin/npm ...
分类:
Web程序 时间:
2014-07-14 08:17:10
阅读次数:
223
1 使用connect-mongdo时,报错:Cannot read property 'Store' of undefined解决: require('connect-mongo')的时候加一个参数express,如下: var express = require('express'); var ...
分类:
其他好文 时间:
2014-07-14 00:30:23
阅读次数:
298
Implement a function to check if a binary tree is a binary search tree./* The inorder travel of a BST is strictly increasing. We track the pre node of...
分类:
其他好文 时间:
2014-07-13 22:27:09
阅读次数:
344
TreeYou are to determine the value of the leaf node in a given binary tree that is the terminal node of a path of least value from the root of the bin...
分类:
其他好文 时间:
2014-07-13 21:24:22
阅读次数:
202
int main(){}void addTotail(ListNode *& pHead, int value){ ListNode *node = new ListNode(); node->value = value; node->pNext = NULL; ListNode *p = pHea...
分类:
其他好文 时间:
2014-07-13 21:11:59
阅读次数:
173
node.js,服务器端的javascript,它允许在后端(脱离浏览器环境)运行javascript代码。事件驱动、异步式I/O的编程模式(单线程)是其核心。node.js的javascript引擎是v8,来自google chrome项目。V8号称是目前世界上最快的javascript引擎。node.js内建了http服务器支持,也就是说你可以轻而易举地实现一个网站和服务器的组合。common...
分类:
Web程序 时间:
2014-07-13 17:06:41
阅读次数:
253
Given a binary tree, determine if it is a valid binary search tree (BST).
Assume a BST is defined as follows:
The left subtree of a node contains only nodes with keys less than the node's key.Th...
分类:
其他好文 时间:
2014-07-13 16:53:01
阅读次数:
189
比如在插入有序链表的过程中,一般情况下要使用俩指针来遍历,而后还要判断是否在第一个位置插入;利用指针的指针后不需要另外考虑这种特殊情况。
代码:
#include
#include
struct node{
int data;
struct node *next;
} *head;
//sorted link-list
void insert(struct no...
分类:
其他好文 时间:
2014-07-13 15:38:13
阅读次数:
198
cortex对模块的依赖基于semanticversion进行管理,如果熟悉npm的模块管理方式,大家都了解node的模块是放在node_modules这个目录下,每个模块自己的依赖都放在自己目录下的node_modules里面,这样避免了不同模块之间的共同依赖版本冲突的问题。而在前端开发中,套嵌的依赖是不..
分类:
其他好文 时间:
2014-07-13 15:01:17
阅读次数:
278