摘要: #include "stdafx.h" #include <Windows.h> typedef struct tagStudent { int id; char szName[128]; tagStudent * pNext; }_STUDENT_ST; // 初始化链表头节点 _STUDENT_ 阅读全文
posted @ 2016-08-04 15:23 C/C++/Python/Java 阅读(235) 评论(0) 推荐(0) 编辑