摘要: #include <cstdio>#include <cstring>#include <cstdlib>#include <iostream>#include <algorithm>using namespace std;struct N{ int data; char name[21]; N *next;};N *creat(){ N *p = (struct N *)malloc(sizeof(struct N)); p->next = NULL; return p;}void link(N *head,N *p){ N 阅读全文
posted @ 2013-06-18 21:19 好小孩 阅读(303) 评论(1) 推荐(0)