上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 23 下一页
摘要: 教学内容: l 文件重命名rename l 文件删除remove 文件重命名rename int rename( const char *oldname, const char *newname ); oldname //需要重命名的文件名 newname //新的文件名 文件删除remove in 阅读全文
posted @ 2016-12-09 14:10 whzym111 阅读(3860) 评论(0) 推荐(0) 编辑
摘要: 文件的概念 文件的位置 文件流 文件访问 在前边的课程里,我们的数据都是放在内存里,一旦程序结束,数据就会消失。为了长久的保存数据,我们可以把数据存放到文件里边。这一节课我们一起讨论一下文件的相关概念。 一、 文件的概念 文件简单的说就是电脑中存放的一组数据的集合。类似于内存里一块连续的数据,与内存 阅读全文
posted @ 2016-12-09 09:29 whzym111 阅读(441) 评论(0) 推荐(0) 编辑
摘要: 用typedef定义函数指针类型 046-函数指针和函数指针数组 46课里边有如下代码 int add(int a,int b,int d) { return a+b+d; } int mul(int a,int b,int c) { return a*b*c; } int main(void) { int (*pn[2])(int,int,int... 阅读全文
posted @ 2016-12-09 09:23 whzym111 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 共享内存极少使用,所以这里我们仅作了解。 1、将几个变量放在相同的内存区,但其中只有一个变量在给定时刻有有效值。 2、程序处理许多不同类型的数据,但是一次只处理一种。要处理的类型在执行期间才能确定。 3、在不同的时间访问相同的数据,但在不同的情况下该数据的类型是不同的。 定义联合类型 联合的定义及成员的引用和结构极为类似 在C语言中多个不同变量共享同一内存区的功能称为联合(union)... 阅读全文
posted @ 2016-12-08 17:38 whzym111 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 实作:以有序二叉树记录学生签到时间及名字,然后以名字升序输出学生签到信息 stricmp,strcmpi 原型:extern int stricmp(char *s1,char * s2); 用法:#include <string.h> 功能:比较字符串s1和s2,但不区分字母的大小写。 说明:st 阅读全文
posted @ 2016-12-08 17:19 whzym111 阅读(763) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include struct node { long data; //存放数据的一个或者多个项 long count; struct node *pLeft; //左孩子 指向一个二叉树 struct node *pRight; //右孩子 指向一个二... 阅读全文
posted @ 2016-12-08 16:43 whzym111 阅读(241) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include struct node { long data; //存放数据的一个或者多个项 long count; struct node *pLeft; //左孩子 指向一个二叉树 struct node *pRight; //右孩子 指向一个二叉树 }; struc... 阅读全文
posted @ 2016-12-08 16:06 whzym111 阅读(3169) 评论(0) 推荐(0) 编辑
摘要: 删除 阅读全文
posted @ 2016-12-07 11:10 whzym111 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 教学内容: 循环双链表 建立循环双链表 循环链表里插入结点 遍历循环链表 双向链表结构定义 struct stu_data { char name[256];//学生名字 struct mytime stuTime;//签到时间 struct stu_data* front; //指向前一个结点 ... 阅读全文
posted @ 2016-12-07 10:48 whzym111 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 代码 阅读全文
posted @ 2016-12-07 09:06 whzym111 阅读(328) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 23 下一页