数据结构_链队列

本文档展示了链队列的实现,包括构造、析构、插入、删除、获取队首元素和判断队列是否为空的操作。代码中定义了Node结构体和LinkQueue类,并在main函数中进行了实例化及相应操作的演示。
摘要由CSDN通过智能技术生成
//LinkQueue.h
#ifndef LinkQueue_H
#define LinkQueue_H
#define NULL 0
struct Node{
	int data;
	Node* next;
};

class LinkQueue{
public:
	LinkQueue();  //构造
	~LinkQueue();  //析构
	void Enqueue(int x);// 插入
	int DeQueue();  // 删除队首
	int GetQueue();  //取队首元素
	int Empty();  //判空操作
private:
	Node* front;  //队首指针
	Node* rear;  //队尾指针
};

#endif;

//LinkQueue.cpp
#include "LinkQueue.h"

LinkQueue::LinkQueue(){
	Node* s = NULL;
	s = new Node;
	s->next = NULL;
	front = rear = s;
}

LinkQueue::~LinkQueue(){
	Node* p = NULL;
	while(front!=NULL)
	{
		p = front->next;
		delete front;
		front = p;
	}
}

void LinkQueue::Enqueue(int x){
	Node* s = NULL;
	s = new Node;
	s->data = x;
	s->next = NULL;
	rear->next = s; rear = s;
}

int LinkQueue::DeQueue(){
	Node* p = NULL;
	int x;
	if(rear == front) throw "下溢";
	p = front->next;
	x = p->data;
	front->next = p->next;
	if(p->next == NULL) rear = front;
	delete p;
	return x; 
}

int LinkQueue::GetQueue(){
	if(front!=rear) return front->next->data;
	else return -(1<<30);  //错误标记
}

int LinkQueue::Empty(){
	if(front == rear) return 1;
	return 0;
}

//LinkQueue_main.cpp
#include<iostream>
using namespace std;
#include "LinkQueue.h"

int main(){
	LinkQueue Q;
	if(Q.Empty()) cout << "队列为空" << endl;
	else cout << "队列非空" << endl;
	cout << "元素10和15执行入队操作:" << endl;
	try{
		Q.Enqueue(10);
		Q.Enqueue(15);
	}
	catch(char* wrong){
		cout << wrong << endl;
	}
	cout << "查看队首元素" << endl;
	cout << Q.GetQueue() << endl;
	cout << "执行出队操作" << endl;
	try{
		Q.DeQueue();
	}
	catch(char* wrong) {
		cout << wrong << endl;
	}
	cout << "查看队首元素" << endl;
	cout << Q.GetQueue() << endl;
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值