c++關於單向鏈表的幾種初步簡單實現

 創建一個關於學生的結構體,並對其進行定義: struct stu { char sName[16]; char sNumber[16]; int nScore[3]; struct stu *next; void copyLinker(struct stu * pH) { strcpy(sName, pH->sName); strcpy(sNumber, pH->sNumber); nScore
相關文章
相關標籤/搜索