码迷,mamicode.com
首页 >  
搜索关键字:rac one node    ( 66256个结果
DOM系列---进阶篇【转】
内容提纲:1.DOM类型2.DOM扩展3.DOM操作内容一.DOM类型DOM基础篇中,我们了解了DOM的节点并且了解怎样查询和操作节点,而本身这些不同的节点,又有着不同的类型。DOM类型类型名说明Node表示所有类型值的统一接口,IE不支持Document表示文档类型Element表示元素节点类型T...
分类:其他好文   时间:2014-06-06 20:00:54    阅读次数:330
【Leetcode】Count and Say
The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is read off as"tw...
分类:其他好文   时间:2014-06-06 19:53:31    阅读次数:203
VisualStudio下std::string的内存布局
主要成员 union _Bxty { // storage for small buffer or pointer to larger one _Elem _Buf[_BUF_SIZE]; _Elem *_Ptr; } _Bx; size_type _Mysize; // current l...
分类:其他好文   时间:2014-06-06 18:22:13    阅读次数:238
Detecting and reacting to collisions Between UI Components
ProblemYou want to specify collision boundaries between your UI components on the screen so that they will not overlap one another.SolutionInstantiate...
分类:其他好文   时间:2014-06-06 16:47:39    阅读次数:261
Centos 编译安装nodejs&express框架
一. 下载nodejs 版本wget http://nodejs.org/dist/v0.10.28/node-v0.10.28.tar.gz二. 编译安装cp node-v0.10.28.tar.gz /usr/src/cd /usr/srctar zxvf node-v0.10.28.tar.g...
分类:Web程序   时间:2014-06-06 14:25:45    阅读次数:206
topcoder SRM 522 DIV2 BoxesDiv2
注意题目这句话,Once you have each type of candies in a box, you want to pack those boxes into larger boxes, until only one box remains.两个box合并后必须放入更大一个盒子题目的有...
分类:其他好文   时间:2014-06-06 13:09:50    阅读次数:213
【Node.js】初识Node.js
因组里项目需要,我和另外一名同事要学习Node.js。之前接触过Javascript,都是前台处理html时用到,现在要用Javascript做后端,学习Node.js,用一段时间专心学习一门新技术,而且还有项目实战锻炼,还不错。一. Node.js架构 1. Node.js跨平台支持*n...
分类:Web程序   时间:2014-06-06 10:07:09    阅读次数:270
单链表操作
#include#includetypedef struct Node{ int data; struct Node *next;}LinkList;//就地反转int LinkListRerverse(LinkList *head){ LinkList *q,*p; p = head->next;...
分类:其他好文   时间:2014-06-06 07:35:54    阅读次数:283
cheerio数据抓取
很多语言都能写个爬虫抓取数据,js自然也可以,使用cheerio可以支持css检索,较快捷的获取需要的数据。首先,先把node.js给安装了。可到官网下载。安装好node.js后,使用npm安装cheerio。 我这里使用的是win7,可以在 node.js command prompt 里输入1....
分类:其他好文   时间:2014-06-05 19:16:34    阅读次数:245
Cocos2d-X3.0 刨根问底(六)----- 调度器Scheduler类源码分析
上一章,我们分析Node类的源码,在Node类里面耦合了一个 Scheduler 类的对象,这章我们就来剖析Cocos2d-x的调度器 Scheduler 类的源码,从源码中去了解它的实现与应用方法。直入正题,我们打开CCScheduler.h文件看下里面都藏了些什么。打开了CCScheduler....
分类:其他好文   时间:2014-06-05 19:07:37    阅读次数:543
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!