數據結構:鏈表的建立和打印

#include "stdafx.h" struct node { int num; struct node *next;//指向下一節點 }; //建立鏈表 struct node * creat() { struct node *head, *temp, *newp;//分別表示頭節點、中間節點、新節點 int n;//節點數據 head = temp
相關文章
相關標籤/搜索