摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2056&cid=1156View Code #include<stdio.h> #include<stdlib.h> struct node { int num ; struct node *next ; }; struct node *creat(int n) { int i ; struct node *head, *p, *tail ; p = (struct node*)malloc(sizeof(struct node))... 阅读全文
posted @ 2013-04-19 21:41 yelan@yelan 阅读(226) 评论(0) 推荐(0) 编辑