摘要: #include #include struct link { int data; struct link *next; }; struct link *invent(void); void outp(struct link *head); int main() { struct link *head,*p; head=invent(); p=head;... 阅读全文
posted @ 2017-04-21 23:35 T.X 阅读(217) 评论(0) 推荐(0) 编辑