摘要: http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2056&cid=1156 1 #include 2 #include 3 typedef struct node 4 { 5 int data; 6 struct node *next; 7 }lb; 8 lb *creat(int n) 9 {10 int i;11 lb *p,*head,*tail;12 p=(lb *)malloc(sizeof(lb));13 p->data=1;14 p->next=NULL;15 he... 阅读全文
posted @ 2013-03-20 19:30 海东青飞吧! 阅读(153) 评论(0) 推荐(0) 编辑