摘要: #include #include #include #include #include using namespace std;typedef struct student{ int data; struct student *next;}node;node *head;node *creat(){ node *head,*p,*s; int x,cycle=1; head=(node *)malloc(sizeof(node)); p=head; while(cycle) { if(scanf("%d",&x)!=EOF) ... 阅读全文
posted @ 2013-07-04 15:49 hunterzhang 阅读(170) 评论(0) 推荐(0) 编辑