數據結構基礎算法-鏈表

#include<stdio.h> #include<stdlib.h> # define N 10 typedef struct node{ int data; struct node * next; } ElemSN; ElemSN * GreatLink1(int a[],int n){ ElemSN *h,*t,*p; int i; //正向建立頭結點 h=t=(ElemSN *)(mal
相關文章
相關標籤/搜索