摘要: 1 # include 2 # include 3 4 struct node 5 { 6 int date; 7 struct node *next; 8 } ; 9 10 struct node *creat(int n)11 {12 struct node *head, *tail, *p;13 head = (struct node *)malloc(sizeof(struct node));14 head -> next = NULL;15 tail = head;16 for(int i = 0; i date);2... 阅读全文
posted @ 2013-03-16 12:59 GLSilence 阅读(258) 评论(0) 推荐(0)