代码如下:
#include <stdlib.h>
#include <iostream.h>
#include <stdio.h>
#include <conio.h>
typedef struct LNode
{
int data;
struct LNode *next;
} LNode, *LinkList;
void Creat_List_L(LinkList &L,int n){
int i,array[10];
LNode *q;
L=(LinkList)malloc(sizeof(LNode));
L->next=NULL;
for(i=0;i<n;i++){
cout<<"请输入数据:"<<endl;
scanf("%d",&array[i]);
}
for(i=n-1;i>=0;i--){
q=(LinkList)malloc(sizeof(LNode));
q->data=array[i];
q->next=L->next;
L->next=q;
}
cout<<"逆置前L:"<<endl;
while(L->next){
L=L->next;
cout<<L->data;
if(L->next!=NULL)
cout<<" -> ";
}
cout<<endl;
}
//创建链表;
void Contray_List(LinkList &L,int &n){
LinkList p,q,s;
int i;
p=(LinkList)malloc(sizeof(LNode));
q=(LinkList)malloc(sizeof(LNode));
s=(LinkList)malloc(sizeof(LNode));
p=L;
p=p->next;
q=p->next;
p->next=NULL;
while(q!=NULL){
s=q->next;
q->next=p;
p=q;
q=s;
}
L=p;
cout<<"逆置完成!"<<endl;
} //逆置函数
void main(){
LinkList L;
LNode *m,*p;
int n;
cout<<"请输入数据的个数:"<<endl;
scanf("%d",&n);
Creat_List_L(L,n);
cout<<"开始逆置..."<<endl;
Contray_List(L,n);
cout<<"逆置后L:"<<endl;
while(L->next){
L=L->next;
cout<<L->data;
if(L->next!=NULL)
cout<<" -> ";
}
cout<<endl;
cout<<"程序结束!"<<endl;
} //main
长风秋雁