摘要: #include "student.h" CStu::CStu() { //链表头指针 m_pHead = NULL; //链表尾指针 m_pEnd = NULL; m_stuCount = 0; } CStu::~CStu() { while (m_pHead) { Student* pTemp = m_pHe... 阅读全文
posted @ 2018-01-21 15:59 第二根杈 阅读(357) 评论(0) 推荐(0) 编辑