2018 -0528 C 語言學習---鏈表

3.鏈表:是爲了實現動態保存一串數據,即不需要預先分配內存空間,而是在需要時候動態申請內存。 例如:         struct Student {             char name[10];             int     age;             struct Student * next;         }; 2.創建鏈表設計下面3個步驟: ①: 使用mallo
相關文章
相關標籤/搜索