码迷,mamicode.com
首页 >  
搜索关键字:rac one node    ( 66256个结果
node.js安装及小例子
1.node.js安装:http://www.nodejs.org/download/ 下载msi版本,直接双击安装,默认在c盘programfiles下,可以进行配置。2.在某路径下建立test.js文件(本人在D:\nod目录下):代码:1 var http = require('http');...
分类:Web程序   时间:2014-06-28 23:18:49    阅读次数:268
node.js
1、百度云下载地址:第一讲:安装、基本使用和使用webStrom开发Node.jshttp://pan.baidu.com/s/11WH5c (Node.js的安装、基本使用,并且介绍了Node.js开发利器:webStorm的配置、使用和如何简单调试代码)第二讲...
分类:Web程序   时间:2014-06-28 22:57:31    阅读次数:240
双链表
#include "stdafx.h"#include "stdlib.h"typedef int ElemType;typedef struct Node{ ElemType data; struct Node *prev; struct Node *next;} DLinkLi...
分类:其他好文   时间:2014-06-28 22:41:23    阅读次数:281
Square roots
Loops are often used in programs that compute numerical results by starting with an approximate answer and iteratively improving it.For example, one w...
分类:其他好文   时间:2014-06-28 20:35:11    阅读次数:252
软链接与硬链接
$ ln f1 f2 #创建f1的一个硬连接文件f2$ ln -s f1 f3 #创建f1的一个符号连接文件f3$ ls -li # -i参数显示文件的inode节点信息
分类:其他好文   时间:2014-06-28 20:26:59    阅读次数:174
NodeJS入门
NodeJS入门来源于:http://www.nodebeginner.org/index-zh-cn.html作者:Manuel Kiessling翻译:goddyzhao&GrayZhang&ondayChen关于本书致力于教会你如何用Node.js来开发应用,过程中会传授你所有所需的“高级”J...
分类:Web程序   时间:2014-06-21 13:48:12    阅读次数:422
链表快速排序
链表快速排序 大致思想是通过一个指针数组转化为常规数组快速排序,最后再重新梳理链表。 #include #include using namespace std;typedef struct NODE{ int data; NODE* next; NODE(int _data) : data(_da...
分类:其他好文   时间:2014-06-21 10:01:47    阅读次数:210
commons-io源码阅读心得
FileCleanTracker: 开启一个守护线程在后台默默的删除文件。 1 /* 2 * Licensed to the Apache Software Foundation (ASF) under one or more 3 * contributor license agreeme...
分类:其他好文   时间:2014-06-21 09:34:59    阅读次数:324
poj 2127 lcis wa
#include#include#include#include#includeusing namespace std;typedef long long ll;const int maxn = 505;const ll one = 1;const ll inf = one l[j-1][x]) l...
分类:其他好文   时间:2014-06-21 08:55:01    阅读次数:207
A string is a sequence
A string is a sequence of characters. You can access the characters one at a time with the bracket operator. The second statement selects ch...
分类:其他好文   时间:2014-06-21 08:19:51    阅读次数:197
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!