//////////////////////////////
/// 建立动态链表 ///
//////////////////////////////
#include <stdio.h>
#include <malloc.h>
#define NULL 0
#define LEN sizeof(struct student) //"sizeof"求字节数运算符
struct student
{
long num;
float score;
struct student *next;
};
/* 使用函数建立动态链表,带回一个头指针 */
struct student *Creat(void)
{
struct student *head=NULL;
struct student *p1,*p2;
p1 = p2 = (struct student *)malloc(LEN); //开辟一个新单元
scanf("%ld%f", &(p1->num), &(p1->score));
int first=1;
while(p1->num != 0) //输入作为"0 0"结束标志
{
if(first) {head=p1; first=0;}
else p2->next = p1;
p2 = p1;
p1 = (struct student *)malloc(LEN);
scanf("%ld%f", &p1->num, &p1->score);
} /*p2指向链表中最后一个结点,p1指向新开辟的结点,
用"p2->next=p1"连接两个结点,通过这种方式延长链表*/
p2->next = NULL;
return head;
}
int main()
{
struct student *pt;
pt = Creat();
return 0;
}
C语言建立动态链表
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...