數據結構基礎算法-循環鏈表

#include<stdio.h> #include<stdlib.h> #define N 5 typedef struct node{ int data; struct node * next; }ElemSN; ElemSN * Greatlink(int a[],int n) { ElemSN * h,*p,*t; int i; h=NULL; for(i=0;i<N;i++) {   
相關文章
相關標籤/搜索