#include<iostream>
#include<malloc.h>
using namespace std;
typedef int elemtype;
typedef struct node
{
}nodetype;
nodetype *create()
{
}
void dis(nodetype *head)
{
}
int len(nodetype *head)
{
}
nodetype *ins(nodetype *head,int i,elemtype x)
{
}
nodetype *del(nodetype *head,int i)
{
}