队列的简单介绍及代码实现

         队列的结构就是先进先出,经相当于向一个指定长度的管道中不断塞乒乓球进去一样,当管道没有满的时候,每次乒乓球都能顺利放进去,当管道已经被放满了的时候,再向管道中放入一个球,就会把最前面那个球排挤出管道,这样新的球才能放进去,下面用c++来实现这的结构!
#include <iostream>
using namespace std;

struct Queue//定义结构体用于实现队列
{
	int *tail;//队尾
	int *head;//队头
	int size;//队列长度
};

bool init_queue(Queue &q)//初始化队列的函数
{
	cout << "NOTICE:input the length of the Queue to initialize it" << endl;
	cin >> q.size;//初始化时制定长度
	q.head = q.tail = new int[q.size];//申请内存空间
	if (q.head == NULL)
		return false;//内存失败返回false
	return true;
}

bool is_queue_full(Queue &q)//判断队列是否已经满员
{
	if (q.tail - q.head >= q.size)//即头尾指针之差已经超过了size的大小
		return true;
	return false;
}

bool push(Queue &q, int value)//插入元素函数
{
	/*简单的插入示意图*/
	/*//|||||||/
		1    2    3    4    5    6  unknown :remarke the location
		--------------------------------
	   	8 <- 7 <- 5 <- 9 <- 2 <- 3          :each elem move ahead
	tmp=head--------------------->    tail  :how to move each element and overwrite fist element
		---------------------------------	
	   	7	 5	  9	   2    3   new_elem    :insert new one to queue
	*///||||||//

	if (!is_queue_full(q))//如果队列没有满的时候,则直接插入,移动指针
	{
		*q.tail = value;
		q.tail++;
		cout << value << " has been pushed into Queue" << endl;
	}
	else//否则应该将头部元素删除,并且向前移动后面的所有元素,以便新元素的插入
	{
		int gethead = *q.head;//获取底部元素,用于输出状态
		int *tmp = q.head;//定义tmp保护head指针在内存段中的位置不被修改
		while (tmp != q.tail)
		{
			*tmp = *tmp + 1;//前移元素
			tmp++;
		}
		*--tmp = value;//在后面空出的位置插入新元素
		cout << value << " has been pushed into Queue, and " << gethead << " has been poped" << endl;
	}
}

bool pop(Queue &q)
{
	if (q.head == q.tail)//队列为空不执行任何操作
	{
		cout << "Error! Queue is empty" << endl;
		return false;
	}
	q.tail--;//删除元素,实际上就是指针前移,元素本身并没有被删除,新的插入操作会覆盖掉它
	cout << *q.tail << "has been poped" << endl;
	return true;
}

void traversal(Queue &q)
{
	if (q.head == q.tail)//队列为空时不执行操作
	{
		cout << "Queue is empty" << endl;
		return;
	}
	int *tmp = q.head;//定义tmp保护head指针在内存段中的位置不被修改
	while (tmp != q.tail)//遍历队列输出队列元素
	{
		cout << *tmp << " ";
		tmp++;
	}
	cout << endl;
}

int main(int argc, char const *argv[])
{
	Queue q;
	init_queue(q);
	string operation;
	int value;
	cout << "input your operation" << endl;
	while (cin >> operation)
	{	
		if (operation == "push")
		{
			cin >> value;
			push(q, value);
		}
		if (operation == "pop")
			pop(q);
		if (operation == "traversal")
			traversal(q);
	}
	return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值