第十九周项目一:动态链表体验(五):建立链表时使链表呈现上升趋势



/*

*copyright (c) 2014, 烟台大学计算机学院.

*All rights reserved.

*文件名称:test.cpp 

*作者:陆云杰

*完成日期:2015年1月27日 

*版本号:v1.0

* 

*

*问题描述:动态链表体验

*程序输入:数据

*程序输出:使链表呈现上升趋势的数据

*/

#include <iostream>
using namespace std;
struct Node
{
    int data;
    struct Node *next;
};
Node *head=NULL;
void make_list3();
void out_list();
int main( )
{
    make_list3();
    out_list();
    return 0;
}
void make_list3()
{
    int n;
    Node *t,*p,*q;
    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;
}

学习心得:这个题通过借鉴后找到了思路!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值