码迷,mamicode.com
首页 >  
搜索关键字:ansible playbook node    ( 29958个结果
优先队列
#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; struct node{ char...
分类:其他好文   时间:2014-08-03 10:20:25    阅读次数:216
poj 1456 Supermarket (贪心+并查集)
# include # include # include using namespace std; int fa[10010]; struct node { int p; int d; }; struct node a[10010]; bool cmp(node a1,node a2)//利润从大到小 { return a1.p>a2.p; } int find(int x) {...
分类:其他好文   时间:2014-08-03 10:16:25    阅读次数:208
Populating Next Right Pointers in Each Node
问题:将二叉树的所有结点指向他的右边的一个结点分析:对于每一个结点来说,其操作都是一样的,除了他的左儿子指向右儿子外,其左儿子的全部右后辈均指向其右儿子的全部左后辈/** * Definition for binary tree with next pointer. * struct TreeLin...
分类:其他好文   时间:2014-08-03 10:12:05    阅读次数:178
[LeetCode]Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node. /** * Definition for binary tree ...
分类:其他好文   时间:2014-08-02 23:32:04    阅读次数:232
深入浅出NodeJS——网络编程
Node提供丰富的网络编程模块包括net、dgram、http和https,分别对应TCP、UDP、HTTP和HTTPS协议。...
分类:Web程序   时间:2014-08-02 23:31:34    阅读次数:270
base.js
function on(node,eventType,handler){ //e=window.event||e; node=typeof node=="string"?document.getElementById(node):node; if(document.all) //IE ...
分类:Web程序   时间:2014-08-02 23:15:34    阅读次数:607
[LeetCode 题解]: Linked List Cycle II
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?题意:...
分类:其他好文   时间:2014-08-02 20:52:54    阅读次数:246
单链表
struct Node{ int data; Node *next;};//创建链表 输入为数字,如果输入0 链表结束(0不计)Node *creat(){ Node *head,*p,*s; int x,cycle=1; head=(Node *)malloc(siz...
分类:其他好文   时间:2014-08-02 20:50:24    阅读次数:292
node.js在win7下安装,并测试是否安装成功
1、node.js去官网下载,下载完,像平时安装软件一样2、把下面的测试文件,放到安装目录下,本文是放到:D:\Program Files\nodejs下var http = require("http"); http.createServer(function(request, response)...
分类:Windows程序   时间:2014-08-02 18:16:33    阅读次数:309
node.js 创建HTTP服务器
这个才是我们学node.js的真正原因,服务器!1、新建一个 index.js 写下var myhttp=require('http');myhttp.createServer(function(req,res){res.writeHead(200,{'Content-Type':''text/t....
分类:Web程序   时间:2014-08-02 18:05:13    阅读次数:224
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!