C語言鏈表在筆試面試中常考問題總結

1、實現單鏈表逆置    無頭結點: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 typedef struct node{ 5 int data; 6 struct node *next; 7 }Node; 8 9 //創建鏈表 10 Node *CreateList(void){ 11 int val,i,n; 1
相關文章
相關標籤/搜索