码迷,mamicode.com
首页 >  
搜索关键字:node    ( 27491个结果
node.js1
node的helloworld是非常的简单。 下载node绿色安装包即可。转至node.exe所在目录——写一个hw.js,然后cmd下执行nodehw.js——返回相应结果。。http://www.cnblogs.com/dolphinX/p/3474568.htmlhw.js的写法? 一定要按照...
分类:Web程序   时间:2014-07-22 22:53:55    阅读次数:247
[leetcode]Remove Nth Node From End of List
Remove Nth Node From End of ListGiven a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2.....
分类:其他好文   时间:2014-07-22 22:53:35    阅读次数:220
深入浅出NodeJS——异步I/O
NodeJS的异步I/O原理,涉及底层*nix和windows平台异步I/O实现方式,通常说Node.js是单线程的,但其底层实质是多线程利用多线程来实现异步I/O。...
分类:Web程序   时间:2014-07-19 23:20:12    阅读次数:1078
Fence Repair
有n(n>=1&&n1&&node[i]>n) { node[0]=0; for(i=1;i>node[i]; inheap(node[i]); } __int64 ans=0; for(i=1;i...
分类:其他好文   时间:2014-07-19 23:02:20    阅读次数:190
【leetcode刷题笔记】Validate Binary Search Tree
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 n...
分类:其他好文   时间:2014-07-19 22:34:50    阅读次数:196
[leetcode]Linked List Cycle II
Linked List Cycle IIGiven a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without u...
分类:其他好文   时间:2014-07-19 18:18:51    阅读次数:270
[读书笔记]了不起的node.js(二)
这周文章双开:这篇主要记录node的学习进展。
分类:Web程序   时间:2014-07-19 14:18:14    阅读次数:203
Eclipse下Nodejs项目配置步骤
Eclipse下Nodejs项目配置步骤方式一:Eclipse开发环境搭建前提条件:1)Node.js已安装ok,环境变量已配置,可以使用node -v来校验是否安装和配置成功(打开cmd命令窗口,输入node -v,如果正确安装正确,则会输出安装的Node.js版本号);成功了以后,在命令窗口下执...
分类:Web程序   时间:2014-07-19 14:06:39    阅读次数:316
【leetcode】Clone Graph
Clone an undirected graph. Each node in the graph contains alabeland a list of itsneighbors.OJ's undirected graph serialization:Nodes are labeled uniq...
分类:其他好文   时间:2014-07-19 12:11:53    阅读次数:238
poj 2503 Babelfish
一个简单的单词翻译的题,我是使用字典序做的; 由于输入的问题 ,,WA,WA,,, 都是泪;#include #include #include using namespace std; struct node{ int chile[26]; bool qq; char uu[11]; node() { qq=0;...
分类:其他好文   时间:2014-07-19 12:08:48    阅读次数:171
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!