摘要:
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))... 阅读全文