計算概論(A) / 結構體與鏈表練習

#include<stdio.h> #include<stdlib.h> struct node { int data; struct node *next; }; int n,f,m; struct node *creat(void) { struct node *head,*p1,*p2; int i=0; head=NULL; for(i=0;i<n;i++) { scan
相關文章
相關標籤/搜索