实验二:线性表的实验

物联网1131-23


实验目的

 【巩固线性表的数据结构,学会线性表的应用。】

1.回顾线性表的逻辑结构,线性表的物理存储结构和常见操作。

2.学习运用线性表的知识来解决实际问题。

3.进一步巩固程序调试方法。

4.进一步巩固模板程序设计。

 顺序表

#include<iostream>
using namespace std;
const int MaxSize = 20;              
  
template<class Score>          
class SeqList    
{    
public:    
     SeqList();        
     SeqList(Score a[],int n); 
     Score Get(int i);                 
     void Insert(int i,Score x);       
     Score Delete(int i);            
     void PrintList();          
private:    
     Score data[MaxSize];      
     int length;   
};    

template<class Score>      
SeqList<Score>::SeqList(Score a[],int n)    
{    
     if(n>MaxSize)throw"wrong";    
     for (int i=0;i<n;i++)      
         data[i]=a[i];    
     length=n;  
}    
    
template<class Score>      
Score SeqList<Score>::Get(int i)   
{    
     if (i<1&&i>length)throw"wrong";    
     else  return data[i-1];
    
}    
    
template<class Score>      
void SeqList<Score>::Insert(int i,Score x)    
{    
     if (length>=MaxSize)throw"wrong";    
     if (i<1||i>length+1)throw"wrong";    
     for (int j=length;j>=i;j--)    
        data[j]=data[j-1];              
     data[i-1]=x;    
     length++; 
	 
}    
    
template<class Score>      
Score SeqList<Score>::Delete(int i)    
{    
	 int x,j;
     if(length==0)throw"wrong";    
     if(i<1||i>length)throw "wrong";              
     x=data[i-1];
	 for(j=i;j<length;j++)
		 data[j-1]=data[j];
	 length--;
	 return x;

}    
    
template<class Score>      
void SeqList<Score>::PrintList()    
{    
     for(int i=0;i<length;i++)    
        cout<<data[i]<<"  ";
	    
	 cout<<endl;
	 
	 
}    

int main()
{
	int a[10]={70,88,90,100,55,75,98,85,79,91};
	int i,x;
	SeqList<int>Seqlist(a,10);
	cout<<"student's scores are as follows."<<endl;
	Seqlist.PrintList();
	cout<<"please input student's number to get score"<<endl;
	cin>>i;
	cout<<Seqlist.Get(i)<<endl;
    cout<<"please input location and score."<<endl;
	cin>>i>>x;
    Seqlist.Insert(i,x);
	cout<<"student's scores are as follows."<<endl;
	Seqlist.PrintList();
	cout<<Seqlist.Delete(2)<<endl;
	cout<<"student's scores are as follows."<<endl;
	Seqlist.PrintList();
	return 0;
}

单链表

<span style="font-size:14px;">#include<iostream>    
using namespace std;    
    
template<class Score>    
struct SS    
{    
    Score data;    
   SS<Score> * next;    
};    
    
template<class Score>    
class LinkList    
{    
public:    
    LinkList();    
    LinkList(Score a[],int n);     
    void Insert(int i,Score x); 
	Score Get(int i);
    Score Delete(int i);    
    void PrintList();    
private:    
    SS<Score> * first;    
};    

template<class Score>
LinkList<Score>::LinkList()
{
	first=new SS;
	first->next=NULL;
}

template<class Score>
LinkList<Score>::LinkList(Score a[],int n)
{
	first=new SS;
	first->next=NULL;
	for(i=0;i<n,i++)
	{
		s=new SS;
		s->data=a[i];
		s->next=first->next;
		first->next=s;
}}

template<class Score>
void LinkList<Score>::Insert(int i,Score x)
{  
	p=first; count=0;
    while(P!=NULL&&count<i-1)
	{
		p=p->next;
		count++
	}
	if(p==NULL)throw"WRONG"
	else {
		s=new SS;s->data=x;
		s->next=p->next;
		p->next=s;
}}

  
template<class Score>
Score LinkList<Score>::Delete(int i)
{

	p=first;
	count=0;
	while(p!=NULL&&count<i-1)
	{
		p=p->next;
		count++;
	}
	if(p==NULL||P->NEXT==NULL)
		throw"WRONG"
	else{
		q=p->next;
		x=q->next;
		p->next=q->next;
		delete q;
		return x;}}

template<class Score>
Score LinkList<Score>::Get(int i)
{
	p=first->next;count=1;
	while(P!=NULL&&count<i)
	{
		p=p->next;
		count++;
	}
	if(p=NULL)throw"wrong"
		else returnp->data;
}

  template<class Score>
	  void LinkList<Score>::PrintList()
  {
	  p=first->next;
	  while(p!=NULL)
	  {
		  cout<<p->data;
		  p=p->next;
  }}

  int main()
{   
	int i,x;
	int a[10]={78,85,100,55,95,91,88,75,64,85};
	LinkList<int>LinkList(a, 10); 
    cout<<"student's scores are as follows."<<endl;
	LinkList.PrintList();
	cout<<"please input student's number to get score"<<endl;
	cin>>i;
	cout<<LinkList.Get(i)<<endl;
    cout<<"please input location and score."<<endl;
	cin>>i>>x;
    LinkList.Insert(i,x);
	cout<<"student's scores are as follows."<<endl;
	LinkList.PrintList();
	cout<<LinkList.Delete(2)<<endl;
	cout<<"student's scores are as follows."<<endl;
	LinkList.PrintList();
	return 0;
}
</span>



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值