20240805数据结构

循环队列

#ifndef ROUND_ROBIN_QUEUE_H
#define ROUND_ROBIN_QUEUE_H

#include <stdbool.h>

#define MAXSIZE 100

typedef struct {
    int data[MAXSIZE]; // 存放数据
    int front;         // 队首指针
    int rear;          // 队尾指针
    int size;          // 队列大小
} RoundRobinQueue;

RoundRobinQueue* initQueue();
bool isEmpty(RoundRobinQueue* queue);
bool isFull(RoundRobinQueue* queue);
void enqueue(RoundRobinQueue* queue, int value);
int dequeue(RoundRobinQueue* queue);
void printQueue(RoundRobinQueue* queue);

#endif // ROUND_ROBIN_QUEUE_H
#include "round_robinqueue.h"
#include <stdio.h>
#include <stdlib.h>

RoundRobinQueue* initQueue() {
    RoundRobinQueue* queue = (RoundRobinQueue*)malloc(sizeof(RoundRobinQueue));
    if (!queue) {
        printf("Memory allocation failed!\n");
        return NULL;
    }
    queue->front = -1;
    queue->rear = -1;
    queue->size = 0;
    return queue;
}

bool isEmpty(RoundRobinQueue* queue) {
    return queue->front == -1;
}

bool isFull(RoundRobinQueue* queue) {
    return (queue->rear + 1) % MAXSIZE == queue->front;
}

void enqueue(RoundRobinQueue* queue, int value) {
    if (isFull(queue)) {
        printf("Queue is full!\n");
        return;
    }
    if (queue->front == -1) {
        queue->front = 0;
    }
    queue->rear = (queue->rear + 1) % MAXSIZE;
    queue->data[queue->rear] = value;
    queue->size++;
}

int dequeue(RoundRobinQueue* queue) {
    if (isEmpty(queue)) {
        printf("Queue is empty!\n");
        return -1;
    }
    int value = queue->data[queue->front];
    if (queue->front == queue->rear) {
        queue->front = -1;
        queue->rear = -1;
    }
    else {
        queue->front = (queue->front + 1) % MAXSIZE;
    }
    queue->size--;
    return value;
}

void printQueue(RoundRobinQueue* queue) {
    if (isEmpty(queue)) {
        printf("Queue is empty!\n");
        return;
    }
    int i = queue->front;
    while (i != queue->rear) {
        printf("%d ", queue->data[i]);
        i = (i + 1) % MAXSIZE;
    }
    printf("%d\n", queue->data[queue->rear]);
}

  • 15
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值