C語言鏈表-建立鏈表而且從鍵盤輸入賦值

鏈表是C語言裏面學習比較困難的一部份內容,下面這個例子就演示了建立一個鏈表而且從輸入端賦值,但願對你們有用。 #include <stdio.h> #include <stdlib.h> struct link { int num; struct link *next; }; int main() { int n,i; struct link *head,*p;
相關文章
相關標籤/搜索