摘要: #include #include struct link { int data; struct link *next; }; struct link *invent(void); struct link *sort(struct link *head); void outp(struct link *head); int main() { struct link *he... 阅读全文
posted @ 2017-04-11 14:51 T.X 阅读(318) 评论(0) 推荐(0)