C語言——帶頭節點單鏈表常見操做

#include <stdio.h> #include <stdlib.h> typedef struct stu { int data; //存放數據 struct stu* next; //下一個節點地址 }Node; typedef struct { int count; // 節點個數 Node* head; // 頭結點 }List; //建立新節
相關文章
相關標籤/搜索