数据结构代码应用举例

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

腾讯文库数据结构代码应用举例数据结构代码应用举例