目录

线性表开篇头文件

目录

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail.

线性表开篇头文件

cpp

//Liner.h
#pragma once
#include<iostream>
#include <cstdio>
#include<cstdlib>
typedef int Status;
#define maxn 100
typedef int ElemType;
typedef struct {
	ElemType data[maxn]; //数组基地址类型
	int length;			//线性表长度 1,2,3...
}List;