struct即结构体,亦被直接称为“结构”。实际编程时,经常需要用相关的不同类型的数据来描述一个数据对象。例如,描述学生的综合信息时,需要使用学生的学号、姓名、性别、成绩以及家庭住址等不同类型的数据。但是,用相关的不同类型的数据来描述一个数据对象会使编程极为不便。因此,C语言提供了一种称为结构体(struct)的数据类型,以描述需要不同类型数据的数据对象[1]。
IEEE 802.16Conformance02-2003 IEEE Standard Conformance to IEEE Std 802.16 Part 2: Test Suite Structure and Test Purposes for 10-66 GHz WirelessMAN-SC...
👤 zhenyushaw
⬇️ 155 次下载
先序遍历非递归算法 #define maxsize 100 typedef struct { Bitree Elem[maxsize] int top }SqStack void PreOrderUnrec(Bitree t) { SqStack s StackInit(s) p=t while (...
👤 hewenzhi
⬇️ 117 次下载
一本介绍struct的好书,实践内容比较多,有具体的例子,不过是原文版的...
👤 wl9454
⬇️ 137 次下载
NRF905驱动代码
// The content of this struct is nRF905 s initialize data.
// CH_NO=1 433MHZ Normal Opration,No Retrans RX,TX Address is 4 Bytes
// RX...
👤 lanjisu111
⬇️ 79 次下载
时间片轮转算法struct
{
int name //进程标识符
int status //进程状态
int ax,bx,cx,dx //进程现场信息,通用寄存器内容
int pc //进程现场信息,程序计数器内容
int psw //进程现场信息,程序状态字内容
int ...
👤 saharawalker
⬇️ 190 次下载