Click here to Skip to main content
15,885,914 members
Articles / Programming Languages / C#

Circular Queue Data Structure in C#

Rate me:
Please Sign up or sign in to vote.
2.41/5 (6 votes)
26 Nov 2006CPOL2 min read 73K   1.5K   17   6
Implementation of a circular queue data structure in C#.

Introduction

I recently had a requirement of using a queue data structure whose length was finite due to memory constraints, and hence I preferred to adopt the circular queue data structure. When I searched for a circular queue over the internet, I could not find much, so I decided to write this article.

A circular queue follows the basic rules of a queue data structure. It has the first in first out mechanism, but its size is restricted. We just need to keep track of two terms to understand, implement, and use a circular queue; they are:

  1. Front position (from where you can dequeue)
  2. Rear position (the last element's position in the queue)

I have implemented this in C# using the ArrayList data type.

The two methods that we expose are Enqueue and Dequeue (the traditional queue methods). I have also added a ResetQueue method to reset the queue to its initial state. The main requirement for this type of a data structure is to implement a restricted number of place holders which can hold an instance of the object that is inserted in to the queue.

The Code

Initializing

In the constructor, our circular queue class will accept an integer parameter to set its MaxQueueSize property. The whole queue implementation is based on the maximum queue size. In any typical application scenario, this maximum size needs to be selected based on the amount of memory an object instance will take and how much memory can be allotted for our queue. Initially, FrontPosition is set to zero and RearPosition to -1.

Enqueue()

If the queue has any vacant position, the Enqueue method will add an element (object) to the circular queue at RearPosition+1. If there is no vacant position, the method will return false.

C#
public bool Enqueue(object obj)
{
    if((nRearPosition == (nMaxSize-1) && nFrontPosition==0) ||
             ((nRearPosition!=-1)&&(nRearPosition+1)==nFrontPosition))
        return false;
    if(nRearPosition == (nMaxSize -1) && nFrontPosition > 0)
       nRearPosition = -1;
    nRearPosition+=1;
    alstQueueContent[nRearPosition] = obj;
    if((nRearPosition-1) == nFrontPosition && 
               alstQueueContent[nFrontPosition]==null)
       nFrontPosition = nFrontPosition+1;
    return true;
}

Dequeue()

If the queue has any element at the position pointed by FrontPosition, the Dequeue method will remove the element (object) from the circular queue and increment FrontPosition. When FrontPosition equals MaxSize -1, then after the dequeue operation, FrontPosition must be set to 0 instead of incrementing.

C#
public object Dequeue()
{
    object Output = "Empty" ;
    if(alstQueueContent[nFrontPosition] != null)
    {
        Output = alstQueueContent[nFrontPosition];
        alstQueueContent[nFrontPosition]=null;
        if((nFrontPosition+1)<nMaxSize && 
                alstQueueContent[nFrontPosition+1] !=null)
            nFrontPosition += 1;
        else if(alstQueueContent[0] !=null && (nFrontPosition+1)== nMaxSize)
            nFrontPosition = 0;
    }
    return Output; 
}

The complete implementation is available ias a downloadable attachment.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
Karam Chandra Bose was a Component developer at A UK Based MNC, most of his work involve pure c# programming, and he has been doing it since june 2004. apart from coding, he likes to paint, catch mosquitoes. He has moderate knowledgen in COM,ATL .

Currently he is a consultant in MS , specialising in IPTV

Comments and Discussions

 
Questionhi Pin
emma33230-Mar-12 18:33
emma33230-Mar-12 18:33 
GeneralQueue Pin
Member 377191915-Mar-10 0:45
Member 377191915-Mar-10 0:45 
Generalfor mr.karam chandrabose Pin
kittaneh9-Feb-09 9:45
kittaneh9-Feb-09 9:45 
QuestionYour code does not work Pin
jhallissey26-Nov-07 23:45
jhallissey26-Nov-07 23:45 
AnswerRe: Your code does not work Pin
karam chandrabose8-Jul-08 3:43
karam chandrabose8-Jul-08 3:43 
GeneralAlso called a ring buffer.... Pin
Keith Vinson4-Dec-06 8:13
Keith Vinson4-Dec-06 8:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.