摘要: #include using namespace std;typedef struct Student{ int id; int age; Student *next;}Student;Student* createList(int num){ Student * head = (Student *)malloc(sizeof(Student)); Student *p; p = head; int count = 0; while (num > 0) { Student *node = (Student *)malloc(s... 阅读全文
posted @ 2014-03-16 16:02 KinXing 阅读(548) 评论(0) 推荐(0) 编辑