Radar InstallationDescriptionAssume the
coasting is an infinite straight line. Land is in one side of coasting, sea in
the other. Each small island is...
分类:
其他好文 时间:
2014-06-02 14:04:03
阅读次数:
265
Given a stringS, find the longest palindromic
substring inS. You may assume that the maximum length ofSis 1000, and there
exists one unique longest pa...
分类:
编程语言 时间:
2014-06-02 09:22:03
阅读次数:
328
1.地址:http://nodejs.org/download/进入后按不同的操作系统下载相应的安装包2.下载后运行即可。
可在命令行输入 node -v 和 npm -v 查看是否安装成功 3.npm(Node包管理器)安装,更新,卸载包 (1)全局模式下载,进入命令行模式输入:
n...
分类:
Web程序 时间:
2014-06-02 08:14:44
阅读次数:
293
Node即学即用
REPL(Read-Evaluate-Print-Loop)
console.log
.clear .help .exit
require('http') createServer
聊天服务器
tcp服务器
require(‘net')
on connection
on data...
分类:
其他好文 时间:
2014-06-01 18:20:16
阅读次数:
464
现在才开始着手写点Nodejs 东西.之前都是在ubuntu系统和centos系统下进行编程的,现在来了点兴趣,
搞下windows下的Nodejs 编程开发.主要是为了方便.
Don`t share your happiness with the one who don`t care about you .
I hope you are not the one.
好了,首先我们到官方网站...
Node.js是一个能够让javascript执行在server上的平台,既是语言又是平台。Node.js是一个实时web应用程序的平台。Node.js有强大的包管理器npm,故node相关软件安装用npm命令安装。
分类:
Web程序 时间:
2014-06-01 16:46:44
阅读次数:
268
操作系统版本:IBMaix6.2数据库版本:11.2.0.4软件运行架构:主库为一个两节点的rac,备库也是一个两节点的rac,但备库只用于接收归档日志,不创建数据文件,不用于数据同步,用于接收来之主库的归档,以供ogg的日志挖取,并且准备在备库上架设一套oggha环境;其中镜像用于存放..
分类:
其他好文 时间:
2014-06-01 16:31:17
阅读次数:
583
域模型
关系数据模型:
按照外键映射:
按照主键映射:
基于外键映射的 1-1
对于基于外键的1-1关联,其外键可以存放在任意一边,在需要存放外键一端,增加many-to-one元素。为many-to-one元素增加unique=“true” 属性来表示为1-1关联
另一端需要使用one-to-one元素,该元素使用...
分类:
系统相关 时间:
2014-06-01 16:20:13
阅读次数:
508
【题目】
Reverse a linked list from position m to n. Do it in-place and in one-pass.
For example:
Given 1->2->3->4->5->NULL, m = 2 and n = 4,
return 1->4->3->2->5->NULL.
Note:
Given m, n satisfy the following condition:
1 ≤ m ≤ n ≤ length of list.
【题意】
...
分类:
其他好文 时间:
2014-06-01 15:08:34
阅读次数:
237
Merge Sorted ArrayGiven two sorted integer
arrays A and B, merge B into A as one sorted array.Note: You may assume that A
has enough space (size that ...
分类:
其他好文 时间:
2014-06-01 12:04:32
阅读次数:
175