Commando War题意:求士兵完成任务的最短时间#include #include #include using namespace std;#define N 1008struct Node{ int a; int b;}Susake[N];int comp(Node x, No...
分类:
其他好文 时间:
2014-07-15 09:33:25
阅读次数:
198
本文解释如何使用Grunt.js构建JavaScript库。Grunt.js依赖Node.js和npm,所以第一节解释其是什么,如何安装和使用。如果你对npm有了解,那你可以跳过这一节。第四和第五节讲述如何配置Grunt和一系列典型Grunt任务。
分类:
编程语言 时间:
2014-07-15 00:48:52
阅读次数:
438
#@ root: the root of searched tree
#@ nodeToFind: the tree-node to be found
#@ path: the path from root to node
#@@
#@@ search tree referenced by root, and return the path
#@@ from root to node, if n...
分类:
其他好文 时间:
2014-07-14 16:45:51
阅读次数:
217
笔记来自《Node.js开发指南》BYVoid编著1、作用域if (true) { var somevar = 'value';}console.log(somevar);JavaScript的作用域全然是由函数决定的,if、for语句中的花括号不是独立的作用域。1.1、函数作用域作用域是通过函数来...
分类:
编程语言 时间:
2014-07-14 15:19:34
阅读次数:
172
无书面许可请勿转载
由于第三章内容较长,我将分做几个部分来翻译。
Advanced Playbooks
So far the playbooks that we have looked at are simple and just run a number of
modules in order. Ansible allows much more control over the execut...
分类:
其他好文 时间:
2014-07-14 14:01:01
阅读次数:
271
Node.js Web开发、进阶(模块加载、控制流、部署、弊端。...
分类:
Web程序 时间:
2014-07-14 12:51:37
阅读次数:
259
调用函数的时候,函数名与左括号之间没有空格。函数名与参数序列之间,没有空格。所有其他语法元素与左括号之间,都有一个空格。
使用小驼峰式命名法作为所有变量和属性的命名规则。
缩进使用两空格,统一使用单引号。
关联数组,除非键名中有空格或是非法字符,否则一律不用引号。
不要将不同目的的语句,合并成一行。
不要省略句末的分号,哪怕一行只有一个语句。
不要使用自增(++)和自减(--)运算符,...
分类:
Web程序 时间:
2014-07-14 12:48:56
阅读次数:
273
1.npm全局安装 modules 后在应用中 使用npm安装时会默认安装到当前目录,如果没有安装到nodejs的node_modules目录,自己复制到node_modules目录 require 不到的解决方案 Windows环境下, 通过 npm install -g 安装的全局模块, 可能无...
分类:
Web程序 时间:
2014-07-13 20:59:00
阅读次数:
261
一半js,一半node的一周。主要记录云平台的前端修改工作。
分类:
其他好文 时间:
2014-07-13 17:54:09
阅读次数:
177