#include
using namespace std;
typedef int Elemtype;
#define Maxsize 5
#define ERROR 0
#define OK 1
typedef struct LinkNode
{
Elemtype data;
struct LinkNode* next;
}LinkNode;
typedef struct
{
LinkNode* front;
LinkNode* rear;
}LinkQueue;
void InitQueue(LinkQueue& Q)
{
Q.front = Q.rear = (LinkNode*)malloc(sizeof(LinkNode));
Q.front->next = NULL;
}
bool IsEmpty(LinkQueue Q)
{
if (Q.front == Q.rear)
{
cout << "队空"<<endl;
return OK;
}
else
{
cout << "队不空" << endl;
return ERROR;
}
}
void EnQueue(LinkQueue& Q, Elemtype x)
{
LinkNode *s = (LinkNode*)malloc(sizeof(LinkNode));
s->data = x;
s->next = NULL;
Q.rear->next = s;
Q.rear = s;
}
bool DeQueue(LinkQueue& Q, Elemtype& x)
{
if (Q.front == Q.rear) return ERROR;
LinkNode* p = Q.front->next;
x = p->data;
Q.front->next = p->next;
if (Q.rear == p)
Q.rear = Q.front;
free(p);
return OK;
}
int main(void)
{
LinkQueue Q;
InitQueue(Q);
EnQueue(Q, 1);
EnQueue(Q, 2);
EnQueue(Q, 3);
EnQueue(Q, 4);
EnQueue(Q, 5);
int x = 0;
DeQueue(Q, x);
cout << "出栈数据为:" << x << endl;
DeQueue(Q, x);
cout << "出栈数据为:" << x << endl;
DeQueue(Q, x);
cout << "出栈数据为:" << x << endl;
DeQueue(Q, x);
cout << "出栈数据为:" << x << endl;
DeQueue(Q, x);
cout << "出栈数据为:" << x << endl;
return 0;
}
- 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
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84