数据结构链队基本操作(C/C++实现)

数据结构链队基本操作(C/C++实现)

注意:本代码为了测试运行默认含有操作所需数据,如有需要可自己增删改相关数据

涉及基本运算流程

  1. 初始化
  2. 判空
  3. 元素依次进队列
  4. 出队一个元素并输出
  5. 元素再次依次进队
  6. 释放链队

GitHub地址(包含.cpp文件和可执行程序exe)

我的数据结构GitHub地址

源代码(经VS2015、devC++编译器运行通过)

#include "stdio.h"    
#include "stdlib.h"   
#include "io.h"  
#include "math.h"  
#include "time.h"

#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define MAXSIZE 20 /* 存储空间初始分配量 */

typedef int Status;

typedef char QElemType; /* QElemType类型根据实际情况而定,这里假设为char */

typedef struct QNode	/* 结点结构 */
{
	QElemType data;
	struct QNode *next;
}QNode, *QueuePtr;

typedef struct			/* 队列的链表结构 */
{
	QueuePtr front, rear; /* 队头、队尾指针 */
}LinkQueue;

Status visit(QElemType c)
{
	printf("%c ", c);
	return OK;
}

/* 构造一个空队列Q */
Status InitQueue(LinkQueue *Q)
{
	Q->front = Q->rear = (QueuePtr)malloc(sizeof(QNode));
	if (!Q->front)
		exit(OVERFLOW);
	Q->front->next = NULL;
	return OK;
}

/* 销毁队列Q */
Status DestroyQueue(LinkQueue *Q)
{
	while (Q->front)
	{
		Q->rear = Q->front->next;
		free(Q->front);
		Q->front = Q->rear;
	}
	return OK;
}

/* 将Q清为空队列 */
Status ClearQueue(LinkQueue *Q)
{
	QueuePtr p, q;
	Q->rear = Q->front;
	p = Q->front->next;
	Q->front->next = NULL;
	while (p)
	{
		q = p;
		p = p->next;
		free(q);
	}
	return OK;
}

/* 若Q为空队列,则返回TRUE,否则返回FALSE */
Status QueueEmpty(LinkQueue Q)
{
	if (Q.front == Q.rear)
		return TRUE;
	else
		return FALSE;
}

/* 求队列的长度 */
int QueueLength(LinkQueue Q)
{
	int i = 0;
	QueuePtr p;
	p = Q.front;
	while (Q.rear != p)
	{
		i++;
		p = p->next;
	}
	return i;
}

/* 若队列不空,则用e返回Q的队头元素,并返回OK,否则返回ERROR */
Status GetHead(LinkQueue Q, QElemType *e)
{
	QueuePtr p;
	if (Q.front == Q.rear)
		return ERROR;
	p = Q.front->next;
	*e = p->data;
	return OK;
}


/* 插入元素e为Q的新的队尾元素 */
Status EnQueue(LinkQueue *Q, QElemType e)
{
	QueuePtr s = (QueuePtr)malloc(sizeof(QNode));
	if (!s) /* 存储分配失败 */
		exit(OVERFLOW);
	s->data = e;
	s->next = NULL;
	Q->rear->next = s;	/* 把拥有元素e的新结点s赋值给原队尾结点的后继,见图中① */
	Q->rear = s;		/* 把当前的s设置为队尾结点,rear指向s,见图中② */
	return OK;
}

/* 若队列不空,删除Q的队头元素,用e返回其值,并返回OK,否则返回ERROR */
Status DeQueue(LinkQueue *Q, QElemType *e)
{
	QueuePtr p;
	if (Q->front == Q->rear)
		return ERROR;
	p = Q->front->next;		/* 将欲删除的队头结点暂存给p,见图中① */
	*e = p->data;				/* 将欲删除的队头结点的值赋值给e */
	Q->front->next = p->next;/* 将原队头结点的后继p->next赋值给头结点后继,见图中② */
	if (Q->rear == p)		/* 若队头就是队尾,则删除后将rear指向头结点,见图中③ */
		Q->rear = Q->front;
	free(p);
	return OK;
}

/* 从队头到队尾依次对队列Q中每个元素输出 */
Status QueueTraverse(LinkQueue Q)
{
	QueuePtr p;
	p = Q.front->next;
	while (p)
	{
		visit(p->data);
		p = p->next;
	}
	printf("\n");
	return OK;
}
//*&是指针类型的引用
/*出队列*/
Status deQueue(LinkQueue *q, QElemType &e)
{
	QueuePtr t;
	if (q->rear == NULL)
		return FALSE; 
	t = q->front;            /*t指向首结点*/
	if (q->front == q->rear)	/*原队列只有一个数据结点时*/
		q->front = q->rear = NULL;
	else                                /*原队列只有两个或两个以上数据结点时*/
		q->front = q->front->next; 
	e = t->data; 
	printf("\n出队元素为%c",e); 
	free(t); 
	return OK; 

}

int main()
{
	int i;
	QElemType d;
	LinkQueue q;
	/*1.初始化链队*/
	i = InitQueue(&q);
	if (i)
		printf("1.成功地构造了一个空队列!\n");

	/*2.判空*/
	printf("2.是否空队列?%d(1:空 0:否)  ", QueueEmpty(q));


	/*3.依次进队列abcde*/
	EnQueue(&q, 'a');
	EnQueue(&q, 'b');
	EnQueue(&q, 'c');
	EnQueue(&q, 'd');
	EnQueue(&q, 'e');
	printf("\n3.依次进队列abcde执行完毕");

	/*4.出队一个元素并输出*/
	deQueue(&q, d);
	deQueue(&q, d);

	/*5.依次进链队def*/

	EnQueue(&q, 'd');
	EnQueue(&q, 'e');
	EnQueue(&q, 'f');
	printf("\n5.依次进队列def执行完毕");

	/*6.释放链队*/
	DestroyQueue(&q);
	printf("销毁队列后,q.front=%u q.rear=%u\n", q.front, q.rear);

	system("pause");

	
	return 0;
	
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值