结构体(也是一种数据类型)
1,概念:由不同类型数据组成的组合型的数据结构。
2,声明:如,
struct Student
{
int num;
char name[20];
char sex;
int age;
float score;
char addr[30];
};
3,定义:
①struct Student stdent1,student2;
②struct Student
{
int num;
char name[20];
char sex;
int age;
float score;
char addr[30];
}stdent1,student2;
③struct
{
int num;
char name[20];
char sex;
int age;
float score;
char addr[30];
}stdent1,student2;
4,访问里面的成员变量:student1.num
结构体数组
1,概念:每个数组元素都是一个结构体类型的数据。
结构体指针
1,概念:指向结构体变量的指针。(一个结构体变量的起始地址就是这个结构体变量的指针)
2,->指向运算符用法:
———–(* p).num;可以写成p->num;表示:
———–p所指向的结构体变量中的num成员。
用指针处理链表
1,建立链表
①建立简单的静态链表(所有结点都是在程序中定义的,不是临时开辟的,也不能用完后释放):
struct Student{
int num;
float score;
struct Student *next;
}
②建立动态链表(在程序运行过程中,从无到有地建立起一个链表)
使用malloc(int size)函数。
共用体类型
1,概念:使几个不同的变量共享同一段内存的结构,称为“共用体”类型的结构。
2,定义:
union 共用体名
{成员表列;
}变量表列;
例如&#x