更新 'ex3_2_2.c'
This commit is contained in:
parent
e9084b7b32
commit
d900c47409
35
ex3_2_2.c
35
ex3_2_2.c
@ -1,3 +1,6 @@
|
||||
/*
|
||||
Des: 此文件用于实现链式队列的基本操作
|
||||
*/
|
||||
#include<stdio.h>
|
||||
#include<stdlib.h>
|
||||
#include<conio.h>
|
||||
@ -9,12 +12,17 @@ typedef struct QNode{
|
||||
typedef struct {
|
||||
QType *front,*rear; // 队头队尾指针
|
||||
}LinkQueue;
|
||||
|
||||
/* 初始化队列 */
|
||||
void InitQueue(LinkQueue *lq){
|
||||
lq=(LinkQueue *)malloc(sizeof(LinkQueue));
|
||||
lq->rear=lq->front=NULL;
|
||||
printf("\n初始化成功\n");
|
||||
}
|
||||
/*
|
||||
将数据 e 入队
|
||||
|
||||
返回值恒为 1
|
||||
*/
|
||||
int EnQueue(LinkQueue *lq, DataType e){
|
||||
QType *s;
|
||||
s=(QType *)malloc(sizeof(QType));
|
||||
@ -28,6 +36,11 @@ int EnQueue(LinkQueue *lq, DataType e){
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
/*
|
||||
将数据出队到 e
|
||||
|
||||
返回值为 1 ,如果返回 0 则队空
|
||||
*/
|
||||
int DeQueue(LinkQueue *lq, DataType *e){
|
||||
QType *p;
|
||||
if(lq->front==NULL){
|
||||
@ -43,6 +56,11 @@ int DeQueue(LinkQueue *lq, DataType *e){
|
||||
free(p);
|
||||
return 1;
|
||||
}
|
||||
/*
|
||||
读取队头元素值给 e
|
||||
|
||||
返回值为 1 ,如果返回 0 则队空
|
||||
*/
|
||||
int GetHead(LinkQueue *lq, DataType *e){
|
||||
if(lq->front==NULL){
|
||||
return 0;
|
||||
@ -50,10 +68,18 @@ int GetHead(LinkQueue *lq, DataType *e){
|
||||
*e = lq->front->data;
|
||||
return 1;
|
||||
}
|
||||
/*
|
||||
判断队是否为空
|
||||
|
||||
返回值为 0 则队不空,返回值为 1 则队空
|
||||
*/
|
||||
int QueueEmpty(LinkQueue *lq){
|
||||
if(lq->front==NULL) return 1;
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
输出队列中的所有元素
|
||||
*/
|
||||
void OutputQueue(LinkQueue *lq){
|
||||
QType *p;
|
||||
if(lq->front==NULL){
|
||||
@ -66,6 +92,11 @@ void OutputQueue(LinkQueue *lq){
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
/*
|
||||
从队列中删除一个元素
|
||||
|
||||
返回值为 1,如果返回值为 0 则队空
|
||||
*/
|
||||
int DeleteOne(LinkQueue *lq){
|
||||
DataType e;
|
||||
if(QueueEmpty(lq)){
|
||||
@ -78,7 +109,7 @@ int main(){
|
||||
LinkQueue Q1;
|
||||
int n,choice;
|
||||
DataType e;
|
||||
InitQueue(&Q1); // ³õʼ»¯
|
||||
InitQueue(&Q1);
|
||||
|
||||
for(;;){
|
||||
printf("\t\t1.入队\n");
|
||||
|
Loading…
Reference in New Issue
Block a user