鱼C论坛

 找回密码
 立即注册
查看: 2028|回复: 1

[技术交流] 56课-链表 参考码源

[复制链接]
发表于 2015-12-9 20:27:21 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#define LEN sizeof(struct str)
struct str * CJLB();//创建链表 返回链表头 地址
void DYLB(struct str *head);//打印链表

struct str //自定义数据类型
{
    long xuehao;
    float chengji;
    struct str *next;

};
void main()

{
   
    
    
    DYLB(CJLB());
    /*
    DYLB 参数1:链表的首地址
    CJLB 没有参数 返回链表首地址

    */


   
 


    
    


   
    

}
struct str *  CJLB()//定义创建链表 函数
{
    struct str *head,*p1,*p2;
    
    
    p1=(struct str*)malloc(LEN);//申请内存
    
    
    
    
    
    head=p1;//首地址
    
    
     
    
    printf("请输入学号:");
    scanf("%d",&p1->xuehao);//头地址
    printf("请输入成绩:");
    scanf("%f",&p1->chengji);//头地址

    p2=(struct str*)malloc(LEN);//申请内存
    p1->next=p2;//指向申请的内存的地址
    while (1)
    {   struct str *v; 
        printf("请输入学号:");
        scanf("%d",&p2->xuehao);
        
        if(p2->xuehao ==0)//判断是否符合条件结束循环
        {  
            v->next=NULL;

        break;
        
        }
        printf("请输入成绩:");
        scanf("%f",&p2->chengji);
        p1=(struct str*)malloc(LEN);
        p2->next=p1;
        v=p2;//记录P2的地址 如果下一次输入学号 0  则让p2指向地址为 NULL


        p2=p1;
        
        
        
        
    }
    return head;


}
void DYLB(struct str *head)//定义打印链表 函数
{
    printf("***************************************\n");
    
    do 
    {  /*
        if (head->xuehao==0)
        {   head=head->next;
        continue;
        
        }
        */
       
        
        
        
        
        printf("学号:%d\n",head->xuehao);
        printf("成绩:%f\n",head->chengji);
        printf("-----------------------------\n");
        head=head->next;
        
        
    } while (head);
    
    printf("***************************************\n");
    
    
    


}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2015-12-9 20:31:39 | 显示全部楼层
眼看代码千篇,不如模仿一篇,模仿代码一篇,不如调试一篇
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 14:54

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表