#includestdio.h#includestdlib.htypedefstructNode{intdata;structNode*next;}LinkNode;LinkNode*creat(LinkNode*head){LinkNode*tail,*p;inti;head=tail=(LinkNode*)malloc(sizeof(LinkNode));for(i=0;i13;i++){p=(LinkNode*)malloc(sizeof(LinkNode));p-data=i+1;tail-next=p;tail=p;}free(p);tail-next=head-next;returnhead;}LinkNode*del(LinkNode*head){inti,j;LinkNode*temp,*p;p=head;for(i=1;i=13;i++){for(j=1;j=2;j++)p=p-next;temp=p-next;p-next=temp-next;printf(%d\n,temp-data);free(temp);//printf(×îºóÁôϵÄÈË:%d\n,p-data);}returnhead;}voidmain(){LinkNode*head=NULL;head=creat(head);head=del(head);}