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

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

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

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wydwdw.html