摘要: // #include "stdafx.h" #include #include #include #include typedef struct student { int data; struct student *next; }node; //建立单链表 node* create() { node *head,*p,*s; int x, cyc... 阅读全文
posted @ 2017-04-17 17:07 泡面小王子 阅读(431) 评论(0) 推荐(0) 编辑