线性表的创建,增加,插入,删除(代码)_数据结构学习记录(一)
//线性表的存储结构#include<stdio.h>#include<iostream>#include<conio.h>#include<stdlib.h>using namespace std;#define LISTSIZE 100 //假设表容量100typedef int DataType;typedef struct ...