数据结构代码应用举例
顺序表的应用举例#define MAX 100/*定义表长不超过100*/typedef struct node{int data[MAX]; int lenth;} LIST; /
数据结构代码应用举例