数据结构 顺序表的插入、删除与查找基本操作
#include<iostream>#include<string>#define MAXSIZE 100 //存储空间初始分配量 #define OK 1#define ERROR 0#define TRUE 1#define FALSE 0using namespace std;typedef struct { int data[MAXSIZE...