#ifndef __SEQLIST_H__ #define __SEQLIST_H__ #include<stdio.h> #include<malloc.h> #include<assert.h> #define SEQLIST_INIT_SIZE 8 #define INC_SIZE 3 typedef int ElemType; typedef struct SeqList { ElemType *base; int capacity; int size; }SeqList; bool Inc(SeqList *list); void I...