⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 seqlist.h

📁 我才学C++,这个是我写的一个数据结构事例程序
💻 H
字号:
#include<iostream>
using namespace std;
#include<stdlib.h>
#ifndef _SEQLIST_H_
#define _SEQLIST_H_

//#define maxSize 1000;
template<class DataType>
class SeqList
{
	protected:
		DataType *List;
		int maxSize;
		int size;
	public:
		SeqList(int max=0);
		~SeqList(void);
		int Size(void)const;
		void Insert(const DataType& item,int i);
		DataType Delete(const int i);
		DataType GetData(int i)const;
};




#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -