寒假项目1-动态链表体验(改造)(6)

/* 
* Copyright (c) 2014, 烟台大学计算机学院 
* All rights reserved. 
* 文件名称:test.cpp 
* 作    者:刘畅 
* 完成日期:2015 年 1  月  23  日 
* 版 本 号:v1.0 
* 
* 问题描述:改造博文示例中的链表。  
* 输入描述:输入n(n为结点数据)。
* 程序输出:输出动态链表


(6)编写函数void insert(int x),将值为x的结点插入到由make_list3建立起来的有序链表中。

#include <iostream>
#include <cstdio>
using namespace std;
struct Node
{
    int data;                   //结点的数据
    struct Node *next;          //指向下一个结点
};
Node *head=NULL;                //将链表头定义为全局变量,以便后续操作
void make_list3();              //建立链表
void out_list();                //输出链表
void insert(int x);             //将值为x的结点插入到有序链表中,使仍有序
int main()
{
    int x;
    cin>>x;
    make_list3();
    out_list();
    insert(x);
    out_list();
    return 0;
}

void make_list3()
{
    int n;
    Node *p,*q,*t;
    cout<<"输入若干正数(以0或一个负数结束)建立链表:"<<endl;
    cin>>n;
    while(n>0)
    {
        t=new Node;
        t->data=n;
        t->next=NULL;
        if(head==NULL)
            head=t;
        else
        {
            if (n<=head->data)
            {
                t->next=head;
                head=t;
            }
            else
            {
                p=head;
                q=p->next;
                while (q!=NULL&&n>q->data)
                {
                    p=q;
                    q=p->next;
                }
                if (q==NULL)
                {
                    p->next=t;
                }
                else
                {
                    t->next=q;
                    p->next=t;
                }
            }

        }
        cin>>n;
    }
    return;
}

void out_list()
{
    Node *p=head;
    cout<<"链表中的数据为:"<<endl;
    while (p!=NULL)
    {
        cout<<p->data<<" ";
        p=p->next;
    }
    cout<<endl;
    return;
}

void insert(int x)
{
    Node *q,*p,*t;
    t=new Node;
    t->data=x;
    t->next=NULL;
    if (head==NULL)
        head==t;
    else
    {
        if(x<=head->data)
        {
            t->next=head;
            head=t;
        }
        else
        {
            p=head;
            q=p->next;
            while(q!=NULL&&x>q->data)
            {
                p=q;
                q=p->next;
            }
            if(q==NULL)
            {
                p->next = t;
            }
            else
            {
                t->next=q;
                p->next=t;
            }
        }
    }
    cout<<"已插入新结点..."<<endl;
    return;
}

运行结果:


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值