#include <iostream>
using namespace std;
struct LinkNode
{
int data;
LinkNode *next;
};
void init(LinkNode *&head)
{
head=new LinkNode;
head->next=NULL;
}
void create(LinkNode *&head)
{
int i;
cin>>i;
if(i==0)
head->next=NULL;
else
{
head->next=new LinkNode;
using namespace std;
struct LinkNode
{
int data;
LinkNode *next;
};
void init(LinkNode *&head)
{
head=new LinkNode;
head->next=NULL;
}
void create(LinkNode *&head)
{
int i;
cin>>i;
if(i==0)
head->next=NULL;
else
{
head->next=new LinkNode;