Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to use the generic queue class as described in the .NET framework (3.5) but I will need a Remove(int index) method to remove items from the queue. Can I achieve this functionality with an extension method? Anyone care to point me in the right direction?

share|improve this question

7 Answers

up vote 12 down vote accepted

What you want is a List<T> where you always call RemoveAt(0) when you want to get the item from the Queue. Everything else is the same, really (calling Add would add an item to the end of the Queue).

share|improve this answer
8  
This has the disadvantage of making Dequeues O(n) instead of O(1) – CodesInChaos Nov 7 '10 at 17:28
2  
@CodeInChaos: Of course, if you're using a Queue the assumption is that you don't need random access in the first place. Wrong data structure it would seem. – Ed S. Jan 28 '12 at 21:24

Someone will probably develop a better solution, but from what I see you will need to return a new Queue object in your Remove method. You'll want to check if the index is out of bounds and I may have got the ordering of the items being added wrong, but here's a quick and dirty example that could be made into an extension quite easily.

public class MyQueue<T> : Queue<T> {
    public MyQueue() 
        : base() {
        // Default constructor
    }

    public MyQueue(Int32 capacity)
        : base(capacity) {
        // Default constructor
    }

    /// <summary>
    /// Removes the item at the specified index and returns a new Queue
    /// </summary>
    public MyQueue<T> RemoveAt(Int32 index) {
        MyQueue<T> retVal = new MyQueue<T>(Count - 1);

        for (Int32 i = 0; i < this.Count - 1; i++) {
            if (i != index) {
                retVal.Enqueue(this.ElementAt(i));
            }
        }

        return retVal;
    }
}
share|improve this answer
   
Thanks David, That looks interesting, but surely there is quite some overhead for creating a new queue like this everytime? Perhaps I am better off solving the inverse problem: just use a list and making my own Queue,Peek and Dequeue methods? – Alex Feb 10 '09 at 6:16
I wrote a blog on this a few minutes ago that should answer any questions about the code I posted. renevo.com/blogs/developer/archive/2009/02/10/… – David Anderson - DCOM Feb 10 '09 at 7:57
Your for loop does not seem correct. I don't see a reason for not iterating through all the queue items. The correct is for (Int32 i = 0; i < this.Count; i++) – Felipe Lima Dec 14 '09 at 14:02
1  
+1 for blog.... – garik Jan 4 '11 at 14:22
3  
You mustn't call ElementAt inside of RemoveAt. You've changed an O(n) operation of copying the queue - already bad - into an O(n^2) operation, as ElementAt iterates through all the elements up to the passed index to find it's element - on every single iteration of the loop. Far better to use foreach and skip the offending element via a loop counter in O(n) time. – Mania Apr 13 '11 at 14:02

Combining both casperOne's and David Anderson's suggestions to the next level. The following class inherits from List and hides the methods that would be detrimental to the FIFO concept while adding the three Queue methods (Equeue, Dequeu, Peek).

public class ListQueue<T> : List<T>
{
    new public void Add(T item) { throw new NotSupportedException(); }
    new public void AddRange(IEnumerable<T> collection) { throw new NotSupportedException(); }
    new public void Insert(int index, T item) { throw new NotSupportedException(); }
    new public void InsertRange(int index, IEnumerable<T> collection) { throw new NotSupportedException(); }
    new public void Reverse() { throw new NotSupportedException(); }
    new public void Reverse(int index, int count) { throw new NotSupportedException(); }
    new public void Sort() { throw new NotSupportedException(); }
    new public void Sort(Comparison<T> comparison) { throw new NotSupportedException(); }
    new public void Sort(IComparer<T> comparer) { throw new NotSupportedException(); }
    new public void Sort(int index, int count, IComparer<T> comparer) { throw new NotSupportedException(); }

    public void Enqueue(T item)
    {
        base.Add(item);
    }

    public T Dequeue()
    {
        var t = base[0]; 
        base.RemoveAt(0);
        return t;
    }

    public T Peek()
    {
        return base[0];
    }
}

Test code:

class Program
{
    static void Main(string[] args)
    {
        ListQueue<string> queue = new ListQueue<string>();

        Console.WriteLine("Item count in ListQueue: {0}", queue.Count);
        Console.WriteLine();

        for (int i = 1; i <= 10; i++)
        {
            var text = String.Format("Test{0}", i);
            queue.Enqueue(text);
            Console.WriteLine("Just enqueued: {0}", text);
        }

        Console.WriteLine();
        Console.WriteLine("Item count in ListQueue: {0}", queue.Count);
        Console.WriteLine();

        var peekText = queue.Peek();
        Console.WriteLine("Just peeked at: {0}", peekText);
        Console.WriteLine();

        var textToRemove = "Test5";
        queue.Remove(textToRemove);
        Console.WriteLine("Just removed: {0}", textToRemove);
        Console.WriteLine();

        var queueCount = queue.Count;
        for (int i = 0; i < queueCount; i++)
        {
            var text = queue.Dequeue();
            Console.WriteLine("Just dequeued: {0}", text);
        }

        Console.WriteLine();
        Console.WriteLine("Item count in ListQueue: {0}", queue.Count);

        Console.WriteLine();
        Console.WriteLine("Now try to ADD an item...should cause an exception.");
        queue.Add("shouldFail");

    }
}
share|improve this answer

In fact, this defeats the whole purpose of Queue and the class you'll eventually come up with the will violate the FIFO semantics altogether.

share|improve this answer
2  
Yep, and that goes for any specialized collection. (Stack, Queue, other). If it doesn't do what you want, its not the right collection to use. – David Anderson - DCOM Feb 11 '09 at 5:18

If the Queue is being used to preserve the order of the items in the collection, and if you will not have duplicate items, then a SortedSet might be what you are looking for. The SortedSet acts much like a List<T>, but stays ordered. Great for things like drop down selections.

share|improve this answer
SortedSet is only available in .NET 4 or higher. – styfle Jan 22 at 18:30

David Anderson's solution is probably the best but has some overhead. Are you using custom objects in the queue? if so, add a boolean like cancel

Check with your workers that process the queue if that boolean is set and then skip it.

share|improve this answer
Don't ask questions in a answer. :-) – Felix K. Jan 29 '12 at 14:54

The queue class is so difficult to understand. Use a generic list instead.

share|improve this answer
1  
On contrary, it is very easy to understand it. Only thing you have to do is invest a few extra minutes to learn about it and open a whole new world of simplicity, in contrast to generic list. – Nikola Malešević Nov 16 '11 at 20:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.