摘要:
共享内存极少使用,所以这里我们仅作了解。 1、将几个变量放在相同的内存区,但其中只有一个变量在给定时刻有有效值。 2、程序处理许多不同类型的数据,但是一次只处理一种。要处理的类型在执行期间才能确定。 3、在不同的时间访问相同的数据,但在不同的情况下该数据的类型是不同的。 定义联合类型 联合的定义及成员的引用和结构极为类似 在C语言中多个不同变量共享同一内存区的功能称为联合(union)... 阅读全文
摘要:
实作:以有序二叉树记录学生签到时间及名字,然后以名字升序输出学生签到信息 stricmp,strcmpi 原型:extern int stricmp(char *s1,char * s2); 用法:#include <string.h> 功能:比较字符串s1和s2,但不区分字母的大小写。 说明:st 阅读全文
摘要:
#include #include #include #include #include #include struct node { long data; //存放数据的一个或者多个项 long count; struct node *pLeft; //左孩子 指向一个二叉树 struct node *pRight; //右孩子 指向一个二... 阅读全文
摘要:
#include #include #include #include #include #include struct node { long data; //存放数据的一个或者多个项 long count; struct node *pLeft; //左孩子 指向一个二叉树 struct node *pRight; //右孩子 指向一个二叉树 }; struc... 阅读全文