using namespace std;#define OK 1#define ERROR 0#define OVERFLOW -2typedef int ELEMTYPE;typedef int Status;typedef struct LNo..._c++结构体入队">
当前位置:   article > 正文

C++数据结构链队出队入队_c++结构体入队

c++结构体入队

链队相关操作

  1. 初始化队列
  2. 入队
  3. 出队
#include "stdafx.h"
#include <iostream>
using namespace std;

#define OK 1
#define ERROR 0
#define OVERFLOW -2

typedef int ELEMTYPE;
typedef int Status;

typedef struct LNode  //结点结构 单链表
{
	ELEMTYPE data;
	struct LNode *next;
}LNode,*Queueptr;

typedef struct     //队列的结构
{
	Queueptr front; //队头指针
	Queueptr rear;  //队尾指针
}LinkQueue;

Status initLinkQueue(LinkQueue &Q)
{
	Q.front = Q.rear = new LNode;  //带头结点 初始化都指向头结点
	if(!Q.front) return OVERFLOW;
	Q.front->next = NULL;
}

bool isEmpty(LinkQueue &Q) //判队空
{
	if (Q.front->next == NULL)
		return true;
	else
		return false;
}
void EnQueue(LinkQueue &Q,ELEMTYPE e) //入队
{
	LNode *p = (LNode *)malloc(sizeof(LNode));
	p->data = e;
	p->next = NULL;
	Q.rear->next = p;
	Q.rear = p;
}

void ExQueue(LinkQueue &Q,ELEMTYPE &e) //出队
{
	if(isEmpty(Q))
		return;
	LNode *p = Q.front->next;
	e = p->data;
	Q.front->next = Q.front->next->next;
	delete (p);
	if (isEmpty(Q)) //若空表 尾指针置初位
		Q.rear = Q.front;
}

void Visit(LinkQueue &Q)
{
	LNode *p = Q.front->next;
	while(p)
	{
		cout << p->data << " ";
		p = p->next;
	}
	cout << endl;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/706955
推荐阅读
相关标签
  

闽ICP备14008679号