} } 数据结构编程实例 1 顺序表的基本操作 #define LEN 100 typedef struct sqlist{ int a[LEN]; int length; }; void init(struct sqlist *sq) /*初始化 */ {int i; for (i=0;ia[i]=0; sq->length=0; } void creat(struc