当前位置:  编程技术>c/c++/嵌入式

c语言链表基本操作(带有创建链表 删除 打印 插入)

    来源: 互联网  发布时间:2014-10-22

    本文导语:  代码如下:#include #include #include #define LEN sizeof(struct Student)struct Student{    long num;    float score;    struct Student*next;};int n;int main(){    /*-----------------------------程序描述--------------------------------------------        题目:写出一...

代码如下:

#include
#include
#include
#define LEN sizeof(struct Student)
struct Student
{
    long num;
    float score;
    struct Student*next;
};
int n;
int main()
{
    /*-----------------------------程序描述--------------------------------------------
        题目:写出一个主函数,分别调用建立链表的函数create(),输出链表的函数print(),
              删除链表结点的函数del(),插入结点的函数insert(),一共5个函数。
        Author:KillerLegend
        Date:  2013.12.6
    ----------------------------------------------------------------------------------*/
//函数声明
    struct Student* create();//创建动态链表的函数声明,函数类型为student结构体类型,返回头指针
    struct Student* del(struct  Student* ,long);//删除指定位置结点的函数声明,参数:链表头结点+删除结点位置+返回头指针
    struct Student* insert(struct Student*,struct Student*);//插入一个Student类型数据的函数声明
    void   print(struct Student*);//输出链表中数据的函数声明,参数为链表的头指针
//定义变量
    struct Student *head,*stu;//定义动态链表的头指针与新的结点
    long del_num;
//建立链表操作
    printf("Input records:n");
    head = create();//建立链表并返回头指针
    print(head);//输出全部结点

//删除结点操作
    printf("nInput the deleted number:");
    scanf("%ld",&del_num);
    while(del_num!=0)//当输入学号为0时结束循环
    {
        head = del(head,del_num);//删除结点后返回链表的头地址
        print(head);//输出全部结点
        printf("Input the deleted number:");
        scanf("%ld",&del_num);
    }
//插入结点操作
    printf("nInput the inserted number:");
    stu=(struct Student*)malloc(LEN);//每插入一个结点需要开辟一个新的结点
    scanf("%ld %f",&stu->num,&stu->score);
    while(stu->num!=0)//当输入的学号为0时结束循环
    {
        head = insert(head,stu);//返回链表的头地址
        print(head);
        printf("nInput the inserted number:");
        stu = (struct Student*)malloc(LEN);
        scanf("%ld %f",&stu->num,&stu->score);
    }
    return 0;
}
//建立链表的函数
struct  Student* create()
{
    struct Student *head;
    struct Student *p1,*p2;
    n=0;
    p1=p2=(struct Student *)malloc(LEN);
    scanf("%ld %f",&p1->num,&p1->score);
    head=NULL;
    while(p1->num!=0)
    {
        n++;
        if(n==1)head=p1;
        else p2->next=p1;//第一次执行时,这一步是将头指针指向自身,当n从2起,这一步用于使p2指向下一个元素
        p2=p1;//使p2和p1指向同一个存储区
        p1=(struct Student*)malloc(LEN);//开辟动态存储区,强制返回struct Student类型的指针
        scanf("%ld %f",&p1->num,&p1->score);
    }
    p2->next=NULL;
    return (head);
}

//删除结点的函数
struct Student* del(struct  Student* head,long num)
{
    struct Student *p1,*p2;
    if(head==NULL)
    {
        printf("List null!n");
        return (head);
    }
    p1=head;
    while(num!=p1->num && p1->next!=NULL)
    {
        p2=p1;
        p1=p1->next;
    }
    if(num==p1->num)
    {
        if(p1==head)
        {
            head=p1->next;
        }
        else
        {
            p2->next=p1->next;
        }
        printf("Delete:%ldn",num);
        n=n-1;
    }
    else
    {
        printf("%ld not been found!",num);
    }
    return (head);
}

//插入结点的函数
struct   Student* insert(struct Student* head,struct Student * stud)
{
    struct Student *p0,*p1,*p2;
    p1=head;
    p0=stud;
    if(head==NULL)//原来的链表是空表
    {
        head=p0;p0->next=NULL;//空表时使插入的结点作为头结点
    }
    else//如果不是空表,则遍历寻找合适的插入位置
    {
        while((p0->num>p1->num)&&(p1->next!=NULL))//按学号顺序插入,如果插入的学号数字比较大,则应该向后推移
        {
            p2=p1;
            p1=p1->next;//后移
        }
    }
    if(p0->numnum)//找到插入的位置,插入的位置是p1所指向的位置之前,也就是p2指向的位置
    {
        if(head==p1)head=p0;//如果插入的位置是头位置之前,则使head指向p0
        else p2->next=p0;//如果不是头位置之前,则使p2的next指针指向插入的数据地址即p0
        p0->next=p1;//使p0的next指针指向p1,完成了数据的加入
    }
    else//插入的学号位置在最后一个
    {
        p1->next=p0;
        p0->next=NULL;
    }
    n=n+1;//记录数加一
    return(head);
}
//输出链表的函数
void print(struct Student * head)
{
    struct Student * p;
    printf("Now,These %d records are:n",n);
    p=head;
    if(head!=NULL)
    do
    {
        printf("%ld %5.1fn",p->num,p->score);
        p=p->next;
    }while(p!=NULL);
}


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 为什么我的浏览器不能观看带有JAVASCRIPT语言的HTML文件
  • 2013年7月和2013年8月编程语言排行榜
  • 如何在GTK2.0下实现国际化(语言选择根据自己设置的语言,不用系统的语言)
  • 2017 年热门编程语言排行榜出炉,你的语言上榜没?
  • C语言中有指针,因此C语言可以创建链表,那么Java语言没有指针,那Java是否可以创建链表呢?
  • 苹果OS X和IOS下最新编程语言swift介绍
  • 求助,在linux下,c语言和汇编语言的接口是什么?
  • c语言判断某一年是否为闰年的各种实现程序代码
  • C语言中间语言 CIL
  • PHP编程语言介绍及安装测试方法
  • 最近学JSP,苦于HTML语言和JAVA语言太差,请教推荐几本书,thanks.
  • Linux下C语言strstr()查找子字符串位置函数详细介绍(strstr原型、实现及用法)
  • 动态编程语言 LIME编程语言
  • c语言实现MD5算法完整代码示例
  • C语言如何改变当前语言环境
  • 以NetBeans IDE为例介绍如何使用XML中Schema语言
  • 如何在VIM中使汇编语言和C语言自动缩进?
  • c语言基于libpcap实现一个抓包程序过程
  • 我安装的linux时默认语言选择的是中文,又乱码,怎么可以解决?怎么更改默认语言成英文?
  • HTML超文本标记语言教程及实例
  • Redhat9安装时语言只选择了中文,现在还能再增加其它语言的支持吗?如英文
  • MD5算法的C语言实现
  • 请问哪里有ubuntu 9.0版本的中文语言包和KDE的中文语言包下载,我用Google搜索了很多地方都没有!


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3