刪除一個無頭單鏈表的非尾節點(C語言)

void DelNotTailNode(PSListNode pos) { PSListNode pNode = NULL; assert(pos); if (NULL == pos->pNextNode) { return; } else { DataType temp = 0; //交換p
相關文章
相關標籤/搜索