间接寻址实现

一、实验目的

巩固线性表的数据结构的存储方法和相关操作,学会针对具体应用,使用线性表的相关知识来解决具体问题。

二、实验内容

建立一个由n个学生成绩的顺序表,n的大小由自己确定,每一个学生的成绩信息由自己确定,实现数据的对表进行插入、删除、查找等操作。分别输出结果。

三、源代码

#include
using namespace std;
const int MaxSize=20;
template
struct Node
{
	T data;
};
template
class Indirect
{
private:
	Node *address[MaxSize]; 
    int length;  
public:
	Indirect();
	Indirect(T a[],int n);
	~Indirect();
    int Length();
	T Get(int i);//按位查找
	int locate(T x);//按值查找
	void Insert(int i,T x);//插入
	T Delete(int i);//删除
	void Print();//遍历
};
template
Indirect::Indirect()
{
	for(int i=0;i
Indirect::Indirect(T a[],int n)
{
	for(int i=0;i;
		address[i]->data=a[i];
	}
	length=n;
}
template
Indirect::~Indirect()
{
	Node *p;
	for(int i=0;i
int Indirect::Length()
{
	return length;
}
template
T Indirect::Get(int i)
{
	if(i>=length) throw"错误";
	return address[i-1]->data;
}
template
int Indirect::locate(T x)
{
	for(int i=0;idata==x)
			return (i+1);
	}
	return 0;
}
template
void Indirect::Insert(int i,T x)
{
	if(i>=length) throw"错误";
	for(int j=length;j>i-1;j--)
		address[j]=address[j-1];
	address[i-1]=new Node;
	address[i-1]->data=x;
	length++;
}
template
T Indirect::Delete(int i)
{
	if(i<1||i>length) throw"错误";
	Node *p;
	p=address[i-1];
	T x=p->data;
	for(int j=i-1;j
void Indirect::Print()
{
	for(int i=0;idata<<" ";
}
void main()
{
	int b[10]={90,98,99,94,89,87,86,80,84,82};
	Indirectc(b,10);
	cout<<"显示所有学生的成绩"<

四、运行结果

间接寻址实现_第1张图片

五、实验心得

间接寻址,在网上看了一些代码,理解了以下,再加上与同学的交流,然后做出来了。这个相比其他的,语句没有那么麻烦。但我在运行的时候,运行时间相比其他的有点久,不知道是什么原因。

你可能感兴趣的:(间接寻址实现)