C語言鏈表基礎自學筆記

爲了複試開始複習C語言的一些編程技巧,今天覆習C鏈表。 1.鏈表的結構體 typedef struct node{ int data; struct node* next; }Node; 2.創建一個有n的節點的鏈表 Node *LinkCreate(int n) { Node *head,*end,*s; int i; head = end= (Node*)malloc(sizeof(
相關文章
相關標籤/搜索