摘要: 在准备阅读一个开源项目的代码前,可以大约看看整个项目共有多少代码,估计项目的规模。我就写了一个简单的程序来达到此目的,其中的一些代码参考了apue中的代码。 代码如下:View Code 1 //程序功能:统计一个文件夹(一个项目)中所有文件的有效代码行数(除去空白行)。 2 3 #include <apue.h> 4 #include <dirent.h> 5 #include <limits.h> 6 #include <string.h> 7 #include <fcntl.h> 8 #include <unistd.h& 阅读全文
posted @ 2013-01-26 17:32 NeilHappy 阅读(433) 评论(0) 推荐(0) 编辑
摘要: 写在这里备忘:sudo add-apt-repository ppa:git-core/ppasudo apt-get updatesudo apt-get install git 只是更新得很慢啊! 阅读全文
posted @ 2013-01-26 12:10 NeilHappy 阅读(793) 评论(0) 推荐(0) 编辑
摘要: 问题描述:列出一个集合的元素个数为k的所有子集。 思路:在字典顺序列出所有子集的基础上判断元素个数就可以了,比较简单。代码如下: 1 #include <stdio.h> 2 #define MAX 1000 3 4 int main() 5 { 6 int n=5; 7 int set[MAX]={1}; 8 int index=0; 9 int count=2;10 int k=3;11 while(set[0]!=n)12 {13 if(set[index]<n) 14 { 15 ... 阅读全文
posted @ 2013-01-26 09:21 NeilHappy 阅读(427) 评论(0) 推荐(1) 编辑