链队列的自我练习

//LinkQueue.h

#ifndef LISTSTACK_H
#define LISTSTACK_H
#include <iostream>
using std::cout;
using std::endl;
template <class T>
struct Node
{
	T data;
	Node<T>*next;
};
template <class T>
class LinkQueue
{
public:
	LinkQueue();
	~LinkQueue();
	void EnQueue(T x);
	T DeQueue();
	void Print();
	T GetTop();
	bool Empty();
	int Length(){return length;}
private:
	Node<T>*top,*rear;
	int length;
};
template <class T>
LinkQueue<T>::LinkQueue()
{
	top=new Node<T>;        //有头结点
	rear=top;
	top->next=NULL;
	length=0;
}
template <class T>
LinkQueue<T>::~LinkQueue()
{
	while(top!=rear)
	{
		Node<T>*q=top;
		top=top->next;
		delete q;
	}
	delete top;
}
template <class T>
void LinkQueue<T>::EnQueue(T x)
{
	Node<T>*s=new Node<T>;
	s->data=x;
	s->next=NULL;
	rear->next=s;
	rear=s;
	length++;
};
template <class T>
T LinkQueue<T>::DeQueue()
{
	if(rear==top) throw "下溢";
	T x;
	Node<T>*q=top->next;
	x=q->data;
	top->next=q->next;
	if(q->next==NULL) rear=top;
	delete q;
	length--;
	return x;
}
template <class T>
void LinkQueue<T>::Print()
{
	Node<T>*p=top->next;
	while(p!=rear)
	{
		cout<<p->data<<" ";
		p=p->next;
	}
	cout<<p->data<<endl;
}
template <class T>
T LinkQueue<T>::GetTop()
{
	if(top==rear) throw "下溢";
	return (top->next)->data;
}
template <class T>
bool LinkQueue<T>::Empty()
{
	return top->next==NULL? 1:0;
}

#endif



//main.cpp

#include "LinkQueue.h"
void main()
{
	int a[5]={1,2,3,4,5};
	LinkQueue<int> l;
	for(int i=0;i<5;i++)
		l.EnQueue(a[i]);
	cout<<"该链队列为:";
	l.Print();
	cout<<"length="<<l.Length()<<endl;
	cout<<"对头元素为:"<<l.GetTop()<<endl;
	cout<<"出队列的元素分别为:"<<l.DeQueue()<<" ";
	cout<<l.DeQueue()<<endl;
	cout<<"此时该链队列为:";
	l.Print();
	cout<<"length="<<l.Length()<<endl;
	cout<<"对头元素为:"<<l.GetTop()<<endl;
	if(l.Empty())
		cout<<"该链队列为空"<<endl;
	else
		cout<<"该链队列不为空"<<endl;
	cout<<"剩余元素依次出队:";
	for(int j=0;j<3;j++)
		cout<<l.DeQueue()<<" ";
	cout<<endl<<"此时对头元素:";
	try
	{
		cout<<l.GetTop()<<endl;
	}
	catch(char*)
	{
		cout<<"不存在!!!!"<<endl;
	}
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值