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
Implement a function to check if a binary tree is a binary search tree./* The inorder travel of a BST is strictly increasing. We track the pre node of...
分类:
其他好文 时间:
2014-07-13 22:27:09
阅读次数:
344
TreeYou are to determine the value of the leaf node in a given binary tree that is the terminal node of a path of least value from the root of the bin...
分类:
其他好文 时间:
2014-07-13 21:24:22
阅读次数:
202
int main(){}void addTotail(ListNode *& pHead, int value){ ListNode *node = new ListNode(); node->value = value; node->pNext = NULL; ListNode *p = pHea...
分类:
其他好文 时间:
2014-07-13 21:11:59
阅读次数:
173
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
node.js,服务器端的javascript,它允许在后端(脱离浏览器环境)运行javascript代码。事件驱动、异步式I/O的编程模式(单线程)是其核心。node.js的javascript引擎是v8,来自google chrome项目。V8号称是目前世界上最快的javascript引擎。node.js内建了http服务器支持,也就是说你可以轻而易举地实现一个网站和服务器的组合。common...
分类:
Web程序 时间:
2014-07-13 17:06:41
阅读次数:
253
Given a binary tree, determine if it is a valid binary search tree (BST).
Assume a BST is defined as follows:
The left subtree of a node contains only nodes with keys less than the node's key.Th...
分类:
其他好文 时间:
2014-07-13 16:53:01
阅读次数:
189
比如在插入有序链表的过程中,一般情况下要使用俩指针来遍历,而后还要判断是否在第一个位置插入;利用指针的指针后不需要另外考虑这种特殊情况。
代码:
#include
#include
struct node{
int data;
struct node *next;
} *head;
//sorted link-list
void insert(struct no...
分类:
其他好文 时间:
2014-07-13 15:38:13
阅读次数:
198
cortex对模块的依赖基于semanticversion进行管理,如果熟悉npm的模块管理方式,大家都了解node的模块是放在node_modules这个目录下,每个模块自己的依赖都放在自己目录下的node_modules里面,这样避免了不同模块之间的共同依赖版本冲突的问题。而在前端开发中,套嵌的依赖是不..
分类:
其他好文 时间:
2014-07-13 15:01:17
阅读次数:
278