linux --- 一切皆文件
发布时间:2013-05-21 22:05:53
预处理 通过CPP程序 通过gcc -E xxx.c 获取预处理后的文件编译 gcc &nb.........【阅读全文】
发布时间:2013-05-21 21:44:05
1:用递归编写itoa()函数void itoa(int n ,char s[]){ static int i ; //static 和全局变量默认初始化为0 if(n /10){ itoa(n/10,s); }else{ &.........【阅读全文】
发布时间:2013-05-20 23:10:55
汉诺塔(递归+栈存储打印)#include <stdio.h>#define MAXLEN 32struct _hanno { int stack[MAXLEN]; int index;}hanno[3];void hanno_print(){ int i,j; for(i = 0;i < 3;i ++){ .........【阅读全文】
发布时间:2013-05-20 22:17:06
1:寻找在t串中s串出现的位置,没有找到返回-1#include <stdio.h>#define MAXLEN 10000int mygetline(char line[],int maxlen);int findstr(char line[],char old[]);int main(void){ int len,address,linenum = 1; char line[MAXLEN]; &nbs.........【阅读全文】