#include <iostream.h>
#include<iomanip.H>
struct LinkNode
{
int data;
LinkNode * next;
};
LinkNode *p,*t;
void CreateLink(LinkNode *h)
{
int k;
char c='y';
t=new LinkNode;
h->next=t;
while(c!='n')
{
cout<<"Please input interge:";
cin>>k;
____________________;
p=t;
t=new LinkNode;
p->next=t;
cout<<"Do you continuity(y/n):";
cin>>c;
}
__________________;
delete t;
}
void Traversal(LinkNode *h)
{
LinkNode *p;
p=h->next;
while(p!=NULL)
{
cout<<setw(5)<<p->data;
_____________________;
}
cout<<endl;
}
void mian()
{
LinkNode *l;
_____________________;
CreateLink(l);
_____________________;
}