码迷,mamicode.com
首页 >  
搜索关键字:ansible playbook node    ( 29958个结果
杭电 2037
考察的是结构体的二次快排   #include #include typedef struct Node{  int fir;  int end; }Node; Node node[110]; int cmp(const void *a,const void *b) {  return (*(node *)a).end>(*(node *)b).end?1:-1; } i...
分类:其他好文   时间:2014-07-28 16:15:23    阅读次数:218
wscript:329: error: Could not autodetect OpenSSL support. Make sure OpenSSL development packages are
安装node错误: wscript:329: error: Could not autodetect OpenSSL support. Make sure OpenSSL development packages are installed. Use configure --without-ssl to disable this message. 说明没有安装   openssl-de...
分类:其他好文   时间:2014-07-28 16:06:03    阅读次数:234
LeetCode "Clone Graph"
A BFS usage.class Solution {public: UndirectedGraphNode *cloneGraph(UndirectedGraphNode *node) { if (!node) return NULL; UndirectedGr...
分类:其他好文   时间:2014-07-28 15:07:53    阅读次数:266
hdu 1175 连连看
本题DFS与BFS都可以 就是判断在两次转弯后 能不能找到。。 BFS #include #include #include using namespace std; struct node { int x, y; int t, d; }; queue q; int n, m, map[1002][1002], prove; int visit[1002][1002][...
分类:其他好文   时间:2014-07-28 11:40:30    阅读次数:285
使用 JavaScript 编写优化算法 (1)
之前一直用Python来写优化算法,为了增强 JS 的熟练程度,开始将原有的代码改写成 JS。采用的工具包括 node.js + Grunt + nodeunit + github + npm + travis-ci。
分类:编程语言   时间:2014-07-28 11:27:40    阅读次数:247
Dijkstra + heap
用优先队列实现 模板: struct node { int pos, dist; friend bool operator b.dist; } }; int Dijkstra(int n,int start,int end) { bool visited[maxn]...
分类:其他好文   时间:2014-07-28 00:07:00    阅读次数:305
深入浅出NodeJS——内存控制
V8虚拟机的内存回收机制,和Java虚拟机类似采用分代回收机制,分为新生代和老生代,当满足一定条件新生代对象会晋级到老生代。利用Node在服务端编程要小心内存泄露问题,一个小的泄露由于大量并发访问可能会导致应用程序的崩溃。...
分类:Web程序   时间:2014-07-27 23:56:19    阅读次数:411
node模块机制
一、node模块化机制1、commonJS模块规范包括三部分:模块引用、模块定义、模块标识。例如://math.jsexports.add = function(){ var sum = 0; var args = arguments; var len = args.length; for(...
分类:其他好文   时间:2014-07-27 23:14:49    阅读次数:322
有关javascript中的JSON.parse和JSON.stringify的使用一二
有没有想过,当我们的大后台只是扮演一个数据库的角色,json在前后台的数据交换中扮演极其重要的角色时,作为依托node的前端开发,其实相当多的时间都是在处理数据,准确地说就是在处理逻辑和数据(这周实习最大的收获)。 而对于依托json格式传输的数据,处理数据时,用到JSON.strinify和...
分类:编程语言   时间:2014-07-27 22:41:39    阅读次数:275
ubuntu下安装nodejs
sudo apt-get install python-software-properties python g++ makesudo add-apt-repository ppa:chris-lea/node.jssudo apt-get updatesudo apt-get install no...
分类:Web程序   时间:2014-07-27 22:07:19    阅读次数:219
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!