第10章
DOMDOM(文档对象模型)是针对HTML和XML文档的一个API(应用程序编程接口)IE中所有DOM对象都是以COM对象的形式实现的,这意味着IE中的对象与原生JavaScript对象行为不一致节点层次总共有12种节点类型,这些类型都继承自一个基类型Node类型DOM1级定义了一个Nod...
分类:
编程语言 时间:
2014-05-26 01:29:02
阅读次数:
349
目录: 1. nodejs的下载 2. 解压和安装 3. 安装过程中出现过的问题 4. 总结 1.
nodejs的下载
我刚开始没有linux系统,于是安装了nodejs的windows版本进行学习。这两天把ubuntu鼓捣好了,也就想着在ubuntu上装上nodejs.
nod...
分类:
Web程序 时间:
2014-05-18 19:28:34
阅读次数:
392
不知为何,这个代码只能得95分放一下傻逼代码。。。#include#include#include#includeusing namespace std;int
n,K;int nn2=1,nn=1,nod;#define N 1000000#define ed(x) (x>>1)#define a...
分类:
其他好文 时间:
2014-05-17 17:55:40
阅读次数:
425
原题地址:http://oj.leetcode.com/problems/binary-tree-zigzag-level-order-traversal/题意:Given
a binary tree, return thezigzag level ordertraversal of its nod...
分类:
编程语言 时间:
2014-05-12 22:02:26
阅读次数:
480
题目来源:HDU 1542 Atlantis
题意:给你一些矩形(左下角和右上角)求面积
思路:参考here这个超赞的 一看就懂了
#include
#include
#include
#include
using namespace std;
const int maxn = 210;
struct node
{
double l, r, h;
int s, val;
nod...
分类:
其他好文 时间:
2014-05-07 08:59:09
阅读次数:
395
public class LinkedList {
Node head = null;
Node tail = null;
int length = 0;
public void add(Object object) {
Node node = new Node(object, null);
if (head == null) {
head = tail = nod...
分类:
其他好文 时间:
2014-05-07 08:24:17
阅读次数:
306