• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
Jesus Program
博客园    首页    新随笔    联系   管理    订阅  订阅
循环队列表示与实现
Code
//循环队列的表示与实现
#include<stdio.h>
#include
<malloc.h>
#include
<stdlib.h>
#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define OVERFLOW -2
#define MAXSIZE 100
struct SqQueue
{
    
int *base;
    
int front;
    
int rear;
};
int InitQueue(struct SqQueue *Q)
{
    Q
->base=(int *)malloc(MAXSIZE*sizeof(int));
    
if(!Q->base)
        exit(OVERFLOW);
    Q
->front=Q->rear=0;
    
return OK;
}
int SqEmpty(struct SqQueue *Q)
{
    
if(Q->front==Q->rear)
        
return TRUE;
    
else
        
return FALSE;
}
int QueueLength(struct SqQueue *Q)
{
    
return (Q->rear-Q->front)%MAXSIZE;
}
int EnQueue(struct SqQueue *Q,int e)
{
    
if((Q->rear+1)%MAXSIZE==Q->front)
        
return ERROR;
    Q
->base[Q->rear]=e;
    Q
->rear=(Q->rear+1)%MAXSIZE;
    
return OK;
}
int DelQueue(struct SqQueue *Q,int *e)
{
    
if(Q->front==Q->rear)
        
return ERROR;
    
*e=Q->base[Q->front];
    Q
->front=(Q->front+1)%MAXSIZE;
    
return OK;
}
void SqQueue()
{
    
struct SqQueue Q;
    
int N;
    
int e;
    InitQueue(
&Q);
    scanf(
"%d",&N);
    
while(N)
    {
        EnQueue(
&Q,N%8);
        N
=N/8;
    }
    
while(!SqEmpty(&Q))
    {
        DelQueue(
&Q,&e);
        printf(
"%d",e);
    }
}
int main()
{
    printf(
"Input :\n");
    SqQueue();
    printf(
"\n");
    
return OK;
}
posted on 2009-09-20 22:02  Jesus Program  阅读(165)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3