关于C语言版进队与出队(作为备忘)

#ifndef _2_H

#define _2_H

#ifdef __cplusplus

extern "C" {

#endif

#define TRUE 1

#define FALSE 0

//¥¯ø’Õ∑

typedef struct qnode

{

int score;

struct qnode *next;

}QNODE;

typedef struct queue

{

QNODE *front;

QNODE *rear;

}QUEUE;

QUEUE *initQueue(QUEUE *q);

int EMPTY(QUEUE *q);

QUEUE *ENQUEUE(QUEUE *q,int x);

int DEQUEUE(QUEUE *q);

#ifdef __cplusplus

}

#endif

#endif

#include <stdio.h>

#include <stdlib.h>

#include "2.h"

QUEUE *initQueue(QUEUE *q)

{

q->front = q->rear = (QNODE *)malloc(sizeof(QNODE));

q->front->next =NULL;

return q;

}

int EMPTY(QUEUE *q)

{

return (q->front == q->rear);

}

QUEUE *ENQUEUE(QUEUE *q,int x)

{

q->rear->next =(QNODE *)malloc(sizeof(QNODE));

if(NULL == q->rear->next)

{

printf("ram error\n");

}

q->rear = q->rear->next;

q->rear->score = x;

q->rear->next =NULL;

return q;

}

int DEQUEUE(QUEUE *q)

{

int x;

QNODE *p;

if(EMPTY(q))

{

exit(1);

}

p = q->front->next;

q->front->next = p->next;

x = p->score;

free(p);

if(NULL == q->front->next)   //µÙ¡À’‚æ‰æÕŒfi∑®≈–∂œø’∂”

{

q->front = q->rear;

}

return (x);

}

int main()

{

int a[]={50,80,70,90},b[4]={0};

int i,score,flag;

QUEUE *p =NULL,*tmp;

p = (QUEUE *)malloc(sizeof(QUEUE));

tmp = p;

p = initQueue(p);

flag = EMPTY(p);

printf("-----------------------------\n");

printf("this queue's empty flag is %d\n",flag);

printf("-----------------------------\n");

printf("ENQUEUE:\n");

for(i =0;i < 4;i++)

{

printf("%d\n",a[i]);

p = ENQUEUE(p, a[i]);

}

flag = EMPTY(p);

printf("-----------------------------\n");

printf("this queue's empty flag is %d\n",flag);

printf("-----------------------------\n");

printf("DEQUEUE:\n");

for(i =0;i < 4;i++)

{

b[i] = DEQUEUE(p);

printf("%d\n",b[i]);

}

flag = EMPTY(p);

printf("-----------------------------\n");

printf("this queue's empty flag is %d\n",flag);

printf("-----------------------------\n");

p =NULL;

free(tmp);

tmp =NULL;

return0;

}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Zwarwolf

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值