#include <iostream>#include <string>using namespace std;/*定义线性表的容量*/#define MAXSIZE 20/*定义线性表元素类型*/typedef int Element;/*定义线性表的结构体*/typedef struct{ Element data[MAXSIZE]; /*线性表使用一维数组做为顺
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号