1 #include "iostream" 2 #include "string" 3 using
namespace std; 4 5 typedef struct node{ 6 string data; 7 struct node *next; 8
node(str...
分类:
其他好文 时间:
2014-05-19 22:08:01
阅读次数:
368
1 #include "windows.h" 2 #include "tlhelp32.h" 3
#include "iostream" 4 using namespace std; 5 6 #pragma
comment(lib,"kernel32.lib") 7 8 DWORD GetKe...
最近在做cppunit
test相关工作,用gcov和lcov工具来查看每行代码的覆盖率,个人感觉lcov真棒,看起来很舒服,点起来也很爽!~~闲聊至此,如题:我使用的是lcov的
--remove命令Remove / filter out remaining unwanted stuff from...
分类:
移动开发 时间:
2014-05-17 18:11:48
阅读次数:
505
关于命名空间的理解---iostream与iostream.h的区别...
分类:
移动开发 时间:
2014-05-15 12:29:26
阅读次数:
301
题目链接:点击打开链接
题意:给定n个点 m个询问
下面n-1行给定一棵树
m个询问 x y
问把树转成以x为根 y的父节点是谁
第一种情况lca==y那就是x的第 dep[x] - dep[y] -1 父亲,依次向上爬山坡,利用倍增的二进制加速。
第二种就是Father[y];
#include"cstdio"
#include"iostream"
#include"queue"
...
分类:
其他好文 时间:
2014-05-15 09:11:44
阅读次数:
397
http://acm.hdu.edu.cn/showproblem.php?pid=4635
Strongly connected
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1381 Accepted Sub...
分类:
其他好文 时间:
2014-05-15 03:26:53
阅读次数:
248
1 #include "windows.h" 2 #include "iostream" 3 4
void main(){ 5 DWORD dwIdThis=GetCurrentProcessId(); 6 7 DWORD
dwVerReq=GetProcessVersion(...
分类:
其他好文 时间:
2014-05-14 01:38:18
阅读次数:
417
转载于祝长洋的BLOG:http://blog.sina.com.cn/s/blog_514b5f600100ayks.html
这两者都有什么不同呢?首先,5年前我们就开始反对把.h符号继续用在标准的头文件中。继续使用过时的规则可不是个好的方法。从功能性的角度来讲,包含了一系列模板化的I/O类,相...
分类:
移动开发 时间:
2014-05-13 10:36:09
阅读次数:
415
C/C++ code?12#include改为:C/C++
code?12#includeusingnamespacestd;
分类:
移动开发 时间:
2014-05-13 10:35:03
阅读次数:
435
第二章 做一个简短的C++程序2.
输出语句的使用endl要调用flush函数刷新缓冲区,而\n不需要调用4.iostream与iostream.h的区别5.
重名问题释放命名空间的两种方法(1.所有 2局部)using namespace std; using std::endl;例: 1 //#...
分类:
编程语言 时间:
2014-05-12 20:40:32
阅读次数:
313