C 語言實例6——單鏈表 尾插法

1. 遍歷方式(不推薦,效率比較低。需要遍歷整個鏈表。) // 鏈表的尾插入 #include<stdio.h> #include<stdlib.h> // 單鏈表聲明 struct Book { //信息域 char title[128]; char author[40]; //指針域 struct Book * next; }; void getInput(struc
相關文章
相關標籤/搜索