Binary Tree Level Order TraversalGiven a binary tree, return thelevel ordertraversal of its nodes' values. (ie, from left to right, level by level).Fo...
分类:
其他好文 时间:
2014-08-08 23:51:06
阅读次数:
265
Binary Tree Zigzag Level Order TraversalGiven a binary tree, return thezigzag level ordertraversal of its nodes' values. (ie, from left to right, then...
分类:
其他好文 时间:
2014-08-08 23:48:36
阅读次数:
307
Problem Description:
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
For example, given n = 3, a solution set is:
"((()))", "(()())",...
分类:
其他好文 时间:
2014-08-08 21:20:46
阅读次数:
327
RedHatEnterprise6.5环境下使用eAccelerator优化网站性能第一步:在做优化之前,首先对网站服务器的硬件做一下检测1,内存信息:2G内存,swap容量为4G[root@linuxcast~]#free-mtotalusedfreesharedbufferscachedMem:18701228642047435-/+buffers/cache:7441125Swap:4095040952..
分类:
Web程序 时间:
2014-08-08 18:31:27
阅读次数:
413
发现vi/etc/hosts报了一个错:e297:writeerrorinswapfile同时无法上传文件到服务器查看了一下磁盘空间,原因在于磁盘空间不够,于是执行命令:逐步追踪发现tomcat下的日志文件居然占用了将近100G,Ohmygod!结果发现目录:/下面磁盘空间已满,删掉一些日志之后系统就又正常起来了。
分类:
其他好文 时间:
2014-08-08 18:28:36
阅读次数:
237
Any class that manages a resource (awrapper, like a smart pointer) needs to implementThe Big Three. While the goals and implementation of the copy-con...
分类:
其他好文 时间:
2014-08-08 15:51:06
阅读次数:
262
Swap分区,即交换区,Swap空间的作用可简单描述为:当系统的物理内存不够用的时候,就需要将物理内存中的一部分空间释放出来,以供当前运行 的程序使用。那些被释放的空间可能来自一些很长时间没有什么操作的程序...
分类:
系统相关 时间:
2014-08-08 09:46:15
阅读次数:
341
lua中的时间类似于C语言中的时间,如下:local time = os.time()
print(time)
local t = os.date("*t")
for k,v in pairs(t) do
print(k,v)
end
这样就可以分别输出年、月、日、时、分、秒,输出如下:
1407406553
hour 18
min 15
wday 5
day 7
mo...
分类:
其他好文 时间:
2014-08-07 18:56:20
阅读次数:
310
安装Oracle 11.2.0.4 的RAC,在Grid 安装时报错:[INS-41112]Specified network interface doesnt maintain connectivity across cluster nodes首先尝试在节点间ping 各个IP 地址没有问题。因为...
分类:
数据库 时间:
2014-08-07 15:40:10
阅读次数:
672
一.序列和关联非共有函数
所有标准库共有函数 (构造,相关属性,迭代器,插入与删除,比较,swap)
其中operator>,operator>=,operator均不适用于priority_queue
顺序容器和关联容器共有函数
(1) 序列容器都提供5种相同的构造方法;关联容器都提供3种相同的构造方法
(2) 还有insert插入函数(序列容器有3个相同版本的插入。关联容...
分类:
其他好文 时间:
2014-08-07 13:15:30
阅读次数:
189