Welcome 微信登录
编程资源 图片资源库 蚂蚁家优选 PDF转换器

首页 / 操作系统 / Linux / C的结构体链表举例子

#include<stdio.h>
#include"stdlib.h" void main(void)
{ struct bb{char num;
char score;
struct bb *next;}xb0,xb1,xb2,xb3,*head,*PC;
 xb0.num=1;
xb0.score=60;
xb1.num=2;
xb1.score=65;
xb2.num=3;
xb2.score=70;
xb3.num=4;
xb3.score=75;head=&xb0;
xb0.next=&xb0;
xb1.next=&xb2;
xb2.next=&xb3;
xb3.next=NULL;
printf("every things is OK !! ");PC=(struct bb*)calloc(2,sizeof(struct bb));
free(PC);
}    。。。。。。。。。。。。。。这是随意写的一个C语言结构体的链表~~~~