#include #include #include #include using namespace std;#define N 100002struct node{ int l,r; long long lz,w;}q[4*N];void pushup(int rt){ q[r...
分类:
其他好文 时间:
2014-08-10 23:57:40
阅读次数:
512
Understanding the node.js event loopThe first basic thesis of node.js is that I/O is expensive:So the largest waste with current programming technolog...
分类:
其他好文 时间:
2014-08-10 21:21:30
阅读次数:
469
TypeError: Arguments to path.join must be strings at f (path.js:204:15) at Object.filter (native) at exports.join (path.js:209:40) at expo...
#include #include #include #include #include using namespace std;struct node{ char msg[20]; int a,b;};struct cmp{ bool operator()(const node ...
分类:
其他好文 时间:
2014-08-10 21:17:20
阅读次数:
214
//hnldyhy(303882171) 11:12:46// zoj 1649//bfs +优先队列#include #include #include using namespace std;struct node{ int x; int y; int step;};bool...
分类:
其他好文 时间:
2014-08-10 21:16:00
阅读次数:
342
#include #include #include #include #include #include using namespace std;struct node{ int m,n; // bool f;};node hash[200];char s[1000];int main(...
分类:
其他好文 时间:
2014-08-10 21:10:11
阅读次数:
345
Understanding node.jsPosted on 29/4/10 byFelix GeisendörferNode.jshas generally caused two reactions in people I've introduced it to. Basically people...
分类:
Web程序 时间:
2014-08-10 18:12:10
阅读次数:
462
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 bi....
分类:
其他好文 时间:
2014-08-10 18:11:20
阅读次数:
273
表4-1 fs 模块函数表 功能异步方法同步方法打开文件fs.open(path,flags, [mode], [callback(err, fd)])fs.openSync(path, flags, [mode])关闭文件fs.close(fd, [callback(err)])fs.clos.....
分类:
Web程序 时间:
2014-08-10 18:03:50
阅读次数:
367
原生调试node debug app.js步骤node debug app.js表3-3 Node.js 调试命令命 令 功 能run 执行脚本,在第一行暂停restart 重新执行脚本cont, c 继续执行,直到遇到下一个断点next, n 单步执行step, s 单步执行并进入函数...
分类:
Web程序 时间:
2014-08-10 15:36:50
阅读次数:
208