数据结构基础算法-链表

#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
相关文章
相关标签/搜索