SDUT順序和逆序建立鏈表

順序建立鏈表 逆序建立鏈表 #include<bits/stdc++.h> struct node { int data; struct node *next; }; struct node *creat(int n)///順序建立鏈表 { struct node *head,*p,*tail; head=(struct node *)malloc(sizeof(struct node)); he
相關文章
相關標籤/搜索