bst :binary search tree(二叉搜索树)对于树中的每个节点n,左子树中的所有节点的关键字都小于节点n的关键字,右子树中所有节点的关键字都大于节点n的关键字struct node{ int key; struct node *left; //左节点 s...
分类:
其他好文 时间:
2014-06-28 17:06:24
阅读次数:
186
1.安装好node.js后在系统环境变量自动会设置好:我安装在D:\Program Files文件夹中也安装好了npm(node packges manager)2.系统会自动配置npm的用户路径但是我们安装的路径是,修改为一下路径3.在你的需要的工作目录中打开git安装coffee包npm ins...
分类:
其他好文 时间:
2014-06-28 17:05:44
阅读次数:
203
莫队算法?感觉没什么优越性啊?难道就是因为在排序的时候cmp函数的不同?这样做为什么减少时限啊?我带着疑惑敲了代码,却一直有bug……代码: 1 type node=record 2 l,r,id,x,y:int64; 3 end; 4 var a,ans:array[1..55...
分类:
其他好文 时间:
2014-06-28 16:50:06
阅读次数:
248
QNetworkAddressEntry类存储了一个网络接口所支持的一个IP地址,同时还有与之相关的子网掩码和广播地址。每个网络接口可以包含0个或多个IP地址,这些IP地址可以分别关联一个子网掩码和(或)一个广播地址(取决于操作系统的支持)。This class represents one suc...
分类:
Web程序 时间:
2014-06-28 16:05:21
阅读次数:
220
BACKGROUNDA conventional virtual-machine monitor (VMM) typically runs on a computer and presents to other software the abstraction of one or more virt...
分类:
其他好文 时间:
2014-06-28 15:25:05
阅读次数:
311
BACKGROUNDA single physical platform may be segregated into a plurality of virtual networks. Here, the physical platform incorporates at least one vir...
分类:
移动开发 时间:
2014-06-28 14:46:39
阅读次数:
330
BACKGROUNDA Virtual Machine (VM) is an efficient, isolated duplicate of a real computer system. More than one VM may be provided concurrently by a sin...
分类:
其他好文 时间:
2014-06-28 14:27:00
阅读次数:
433
phpstorm调试php错误提示:Host 'localhost' has multiple addresses. You must choose one explicitly!Couldn't create FastCGI listen socket on port localhost:3568...
分类:
其他好文 时间:
2014-06-28 14:22:59
阅读次数:
283
Given 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 is greater or equa...
分类:
其他好文 时间:
2014-06-20 15:25:50
阅读次数:
225
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2014-06-20 14:43:53
阅读次数:
137