C的结构体链表举例子

来源:互联网 发布:autodesk绘画软件 编辑:程序博客网 时间:2024/04/28 08:43
 

#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 !!\n");

PC=(struct bb*)calloc(2,sizeof(struct bb));
free(PC);
}

    。。。。。。。。。。。。。。这是随意写的一个C语言结构体的链表~~~~

原创粉丝点击