#include <stdio.h>
#include <stdlib.h>
struct yuansu
{
int data;
struct yuansu *next;
};
struct yuansu *creat(void)
{
struct yuansu *head,*p1,*p2;
head=p1=(struct yuansu*)malloc(sizeof(struct yuansu));
p2=(struct yuansu*)malloc(sizeof(struct yuansu));
......................
阅读全部 | 2013年9月6日 23:59