通过C语言娶百富美之链表与结构体结合!!!!!!

 链表与结构体的结合,可以很好的方便输入输出,以后使用链表时只需要将结构体的信息稍作修改就可以使用,非常方便!!!
下面是写学生学号和姓名的结构体与链表的结合create函数!
#include   <stdio.h>
typedef struct node{
  4     int number;
  5     char name[20];
  6 }node;
  7
  8 typedef struct student{
  9     node information;
 10     struct student *next;
 11 }student;
 12
 13 int iCount;
 14
 15 struct student *create()
 16 {
 17     int i;
 18     node information;
 19     struct student *head;           //头指针 方便以后插入与删除等一系列操作
 20     struct student *end;              //位置指针
 21     struct student *new;             //创建空间的新指针
 22     new = end = (struct student *)malloc(sizeof(student));
 23     head = NULL;
 24     if(new == NULL)    //如果申请堆空间失败 则结束进程返回-1
 25     {

 26         printf("申请空间失败\n");

 27         goto err;
 28     }
 29     printf("请先输入学号,再输入姓名:\n");
 30     scanf("%d",&information.number);
 31     scanf("%s",information.name);
 32     new->information = information;    //把结构体信息直接输入到链表中,方便快捷
 33     for(i=0;new->information.number>0;i++)
 34     {
 35         iCount++;
 36         if(iCount == 1)
 37         {
 38             new -> next = NULL;
 39             end = new;
 40             head = end;
 41         }
 42         else
 43         {
 44             new -> next = NULL;
 45             end = new;
 46             new = new -> next;
 47         }
 48         new = (struct student*)malloc(sizeof(student));
 49         scanf("%d",&information.number);
 50         scanf("%s",information.name);
 51         new -> information = information;
 52     }

53     return head;
 54 err:
 55     return -1;
 56 }
 57
 58 int main()
 59 {
 60     student *A;
 61     A = create();
 62     return 0;
 63 }


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值