C语言实现线性表顺序存储结构
C语言实现线性表顺序存储结构#include <stdio.h>#include <iostream>#define MAXSIZE 10#define OK 1#define ERROR 0#define OVERFLOW -2typedef int Status;using namespace std;typedef struct{ int number;} Polynomial;typedef struct{ Polyno