How to implement an array-based queue using C language
In programming, queue is a commonly used data structure. Many programming languages have their own queue implementations, such as Queue in Java and deque in Python. However, in C language, there is no ready-made queue implementation. Therefore, in C language, we need to implement the queue by defining an array and using pointers and other tricks.
In this article, we will introduce how to implement an array-based queue using C language.
- Define a queue structure
We can implement queue operations by defining a queue structure. This queue structure includes information such as the size of the queue, head and tail pointers, element data, etc.
#define MAX_SIZE 100 typedef struct queue { int size; int front; int rear; int data[MAX_SIZE]; } Queue;
In the above code, we define a MAX_SIZE constant to represent the maximum size of the queue, and declare a queue named Queue by defining a structure.
Among them, size represents the size of the queue, front represents the queue head pointer, rear represents the queue tail pointer, and data is an array storing elements.
- Queue initialization operation
In the implementation of the queue, the queue initialization operation needs to be performed first to ensure the correct use of the queue.
void init(Queue *q) { q->size = 0; q->front = 0; q->rear = -1; }
In the above code, we define an initialization function init, which accepts the pointer q pointing to the queue structure as a parameter, and sets the size of the queue to 0, the head pointer to 0, and the tail pointer to 0. The pointer is set to -1, indicating that the queue is empty.
- Element enqueuing operation
The enqueuing operation of the queue is to place an element at the end of the queue. The implementation here is to add the element to the end of the array data , and update the position of the rear pointer.
int enqueue(Queue *q, int value) { if(q->size == MAX_SIZE) { return 0; } q->rear++; q->data[q->rear] = value; q->size++; return 1; }
In the above code, first determine whether the queue is full. If it is full, it returns 0 to indicate that the insertion failed. Otherwise, the rear pointer is moved backward by one position and the element value is assigned to the data array. tail, and add 1 to the queue size, and finally return 1 to indicate successful insertion.
- Element dequeuing operation
The dequeuing operation of the queue is to take out the element at the head of the queue and update the position of the front pointer. The idea implemented here is to return the element value at the front position in data, move the front pointer backward one bit, and update the size of the queue at the same time.
int dequeue(Queue *q) { if(q->size == 0) { return -1; } int value = q->data[q->front]; q->front++; q->size--; return value; }
In the above code, first determine whether the queue is empty. If it is empty, return -1 to indicate that the queue is empty. Otherwise, return the element value at the front position in the data and move the front pointer backward. One bit, decrements the queue size by 1, and returns the element value.
- Implementation of test queue
Now that we have implemented various operations of the queue, let’s test it:
#include <stdio.h> int main() { Queue myQueue; init(&myQueue); enqueue(&myQueue, 1); enqueue(&myQueue, 2); enqueue(&myQueue, 3); printf("%d\n", dequeue(&myQueue)); printf("%d\n", dequeue(&myQueue)); printf("%d\n", dequeue(&myQueue)); return 0; }
The above test In the code, we first define a queue named myQueue and initialize it using the init function. Then we use the enqueue function to insert the numbers 1, 2, and 3 into the queue, and use the dequeue function to remove elements from the queue and output them to the screen.
The output here should be:
1 2 3
- Summary
In this article, we learned how to use C language to implement an array-based queue. By defining a queue structure and related operation functions, we can easily add, delete and access elements in the queue. Although it is troublesome to use pointers to implement queues, this method can help us better understand the principles of queues and is of great help in learning data structures and algorithms.
The above is the detailed content of How to implement an array-based queue using C language. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This article explores efficient PHP array deduplication. It compares built-in functions like array_unique() with custom hashmap approaches, highlighting performance trade-offs based on array size and data type. The optimal method depends on profili

This article analyzes PHP array deduplication, highlighting performance bottlenecks of naive approaches (O(n²)). It explores efficient alternatives using array_unique() with custom functions, SplObjectStorage, and HashSet implementations, achieving

This article explores PHP array deduplication using key uniqueness. While not a direct duplicate removal method, leveraging key uniqueness allows for creating a new array with unique values by mapping values to keys, overwriting duplicates. This ap

This article details implementing message queues in PHP using RabbitMQ and Redis. It compares their architectures (AMQP vs. in-memory), features, and reliability mechanisms (confirmations, transactions, persistence). Best practices for design, error

This article examines current PHP coding standards and best practices, focusing on PSR recommendations (PSR-1, PSR-2, PSR-4, PSR-12). It emphasizes improving code readability and maintainability through consistent styling, meaningful naming, and eff

This article details installing and troubleshooting PHP extensions, focusing on PECL. It covers installation steps (finding, downloading/compiling, enabling, restarting the server), troubleshooting techniques (checking logs, verifying installation,

This article explores optimizing PHP array deduplication for large datasets. It examines techniques like array_unique(), array_flip(), SplObjectStorage, and pre-sorting, comparing their efficiency. For massive datasets, it suggests chunking, datab

This article explains PHP's Reflection API, enabling runtime inspection and manipulation of classes, methods, and properties. It details common use cases (documentation generation, ORMs, dependency injection) and cautions against performance overhea
