/*
*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;
}
学习心得:这个题通过借鉴后找到了思路!!