c++建立鏈表

#include "stdio.h" #include "stdlib.h" typedef struct List { int data; struct List *next; //指針域 }List; void HeadCreatList (List *L) //頭插法創建鏈表 {
相關文章
相關標籤/搜索