數據結構-鏈表逆置 C語言源碼

數據結構-鏈表逆置 C語言源碼 #include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }node; struct node *creat(int n) //創建鏈表 { struct node *head,*p,*s; int i; p=head=(struct nod
相關文章
相關標籤/搜索