-
近期文章
近期评论
- coolker 发表在《打造最快的Hash表》
- struggle 发表在《提供C语言教学课件(适用于初学者)》
- zhanghaibo 发表在《提供C语言教学课件(适用于初学者)》
- zhanghaibo 发表在《提供C语言教学课件(适用于初学者)》
- diys 发表在《C语言编程宝典(王大刚) 1.1 C 语言的产生与发展》
文章归档
- 2022 年十月
- 2014 年一月
- 2013 年十二月
- 2012 年十一月
- 2012 年七月
- 2012 年六月
- 2012 年五月
- 2012 年四月
- 2012 年三月
- 2012 年二月
- 2011 年十二月
- 2011 年十月
- 2011 年九月
- 2011 年八月
- 2011 年七月
- 2011 年六月
- 2011 年五月
- 2011 年四月
- 2011 年三月
- 2011 年二月
- 2011 年一月
- 2010 年十二月
- 2010 年十一月
- 2010 年十月
- 2010 年九月
- 2010 年八月
- 2010 年七月
- 2010 年六月
- 2010 年五月
- 2010 年四月
- 2010 年三月
- 2010 年二月
- 2010 年一月
- 2009 年十二月
- 2009 年十一月
- 2009 年十月
- 2009 年九月
- 2009 年八月
- 2009 年七月
- 2009 年六月
- 2009 年五月
- 2009 年四月
- 2009 年三月
- 2009 年二月
- 2009 年一月
- 2008 年十二月
- 2008 年十一月
- 2008 年十月
- 2008 年九月
- 2008 年八月
- 2008 年七月
- 2008 年六月
- 2008 年五月
- 2008 年四月
- 2008 年三月
- 2008 年二月
- 2008 年一月
- 2007 年十二月
- 2007 年十一月
- 2007 年十月
- 2007 年九月
- 2007 年八月
- 2007 年七月
- 2007 年六月
- 2007 年三月
- 2007 年二月
- 2007 年一月
- 2006 年十二月
- 2006 年十一月
- 2006 年十月
- 2006 年九月
- 2006 年八月
- 2006 年七月
- 2006 年六月
- 2006 年五月
- 2006 年四月
- 2006 年三月
- 2006 年二月
- 2006 年一月
- 2005 年十二月
- 2005 年十一月
分类目录
功能
分类目录归档:C/C++源代码共享
2007
12-16
12-16
#include<sys/types.h>#include<linux/sem.h>#include<linux/shm.h>#include<unistd.h>#include<stdio.h>#include<errno.h>#include<time.h>
#define MAXSHM 5 //....
Read More >
2007
12-16
12-16
#include<stdio.h>#include<stdlib.h>#include<math.h>#define N 8typedef struct queen{ int a[N]; int b[N]; int i;}qn;int trial(int,int,qn *);int check(q....
Read More >
2007
12-16
12-16
/* 运行此程序之前要将写有单词的英文文章以.txt格式保存在d:\word.txt*/#include<stdio.h>#include<stdlib.h>#include<ctype.h>#include<string.h>#include <fcntl.h> #....
Read More >
2007
12-16
12-16
#include <stdlib.h> #include <stdio.h> #include <time.h>#include<math.h>#define N 6void main(){ int i,j,a,A[N],k,t; long b; srand(....
Read More >
2007
12-16
12-16
#include <stdlib.h>#include <stdio.h>#include <windows.h>#include <sql.h>#include <sqlext.h>#include <Sqltypes.h>#include<string.h>#define SNO_LEN 30#define N....
Read More >
2007
12-16
12-16
#include<stdio.h>#include<time.h>#include<stdlib.h>typedef struct prc{ int ch; int l; int s; struct prc *last; struct prc *next;}pr;pr *get(pr *p);int n=0;in....
Read More >
2007
12-16
12-16
#include<stdio.h>#include<stdlib.h>#include<ctype.h>#include<time.h>#define MAX 128#define S 1typedef struct{ int i; //记录页面号 char *t;//记....
Read More >
2007
11-24
11-24
对Open CV 中的平面划分相关函数使用探索作者:龚勋
下载源代码摘要 :Delaunay三角剖分在工程应用中非常有用,开源库OpenCV也提供了相应的函数,但是由于原始文档不是很详细,在使用过程中仍然会遇到很多麻烦,笔者就自己的理解进行了相关的总结,并解决了实际应用中的相关问题。
关键字:....
Read More >
2007
11-24
11-24
汉诺塔游戏的设计作者:苍竹先生
下载源代码汉诺塔问题是最经典的递归问题,笔者就该问题设计了这个游戏,由用户交互游戏和自动演示两部分组成,支持撤销功能、选关、自动完成等功能。
首先建立了类CMap,该类主要实现用户每一步的操作和画图显示功能,记录的时候只须记录每组盘子的个数和盘子的矩形。代码和注....
Read More >
2007
11-24
11-24
超强仿QQ自动伸缩窗口作者:华南理工大学软件学院郑圣君
下载源代码
关键字:QQ 自动伸缩伸缩窗口 QQ自动伸缩窗口
摘要: 某天在CSDN论坛上看到有人发帖询问QQ自动伸缩窗口是怎么实现的,我也好想知道,于是到百度一搜索,结果不多,来来去去都是那几篇,下载那些demo运行一下,发觉效果与QQ相差很大,于是决定自己动手做个,要求要近乎完美地模仿这个功能。由于是些效果....
Read More >
2007
11-24
11-24
BMP图象解析作者:南京邮电大学 吴登荣下载源代码
摘 要:对BMP图象格式进行解析,本工程在WinXP+VC6.0下编译运行成功。
关 键 字:BMP格式
正 文:BMP文件由文件头、位图信息头、颜色信息和图形数据四部分组成。一、BMP文件头BMP文件头数据结构含有BMP文....
Read More >
2007
11-24
11-24
探讨性能测试中的计时问题
作者:龚 勋
下载源代码摘要:本文结合作者在代码性能测试工作中的经验,介绍一组自己封装的的计时函数。使用该组函数可以简化测试工作,从而把更多的精力放在主要工作上,不需要过多地维护计时代码,仅仅使用两个宏就可以方便、精确地实现多个模块、多方式的时间性能测试,并且计时结果以....
Read More >
2007
11-24
11-24
原帖及讨论:http://bbs.bc-cn.net/dispbbs.asp?BoardID=5&ID=185111
*/ --------------------------------------------------------------------------------------*/ 出自: 编程中国 http://www.bc-cn.net*/ 作....
Read More >
2007
11-16
11-16