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

I am using std::queue for implementing JobQueue class. ( Basically this class process each job in FIFO manner). In one scenario, I want to clear the queue in one shot( delete all jobs from the queue). I don't see any clear method available in std::queue class.

How do I efficiently implement the clear method for JobQueue class ?

I have one simple solution of popping in a loop but I am looking for better ways.

//Clears the job queue
void JobQueue ::clearJobs()
 {
  // I want to avoid pop in a loop
    while (!m_Queue.empty())
    {
        m_Queue.pop();
    }
}
share|improve this question

4 Answers

up vote 56 down vote accepted

A common idiom for clearing standard containers is swapping with an empty version of the container:

void clear( std::queue<int> &q )
{
   std::queue<int> empty;
   std::swap( q, empty );
}

It is also the only way of actually clearing the memory held inside some containers (std::vector)

share|improve this answer
7  
Better yet is std::queue<int>().swap(q). With copy and swap idiom, all this should be equivalent to q = std::queue<int>(). – Alexandre C. Nov 19 '10 at 16:42
3  
While std::queue<int>().swap(q) is equivalent to the code above, q = std::queue<int>() need not be equivalent. Since there is no transfer of ownership in the assignment of the allocated memory some containers (like vector) might just call the destructors of the previously held elements and set the size (or equivalent operation with the stored pointers) without actually releasing the memory. – David Rodríguez - dribeas Nov 20 '10 at 19:44
In std::queue<int>().swap(q), isn't the temporary supposed to be const? – André Caron Aug 31 '11 at 19:40
@André Caron: No, temporaries are the result of an rvalue expression and as such it can only be used in limited ways (for example, it cannot be used as the lhs of an assignment, or bound to a reference), but that does not mean that it is const those limitations make the expression: q.swap(std::queue<int>()) invalid (the temporary cannot be bound by the reference argument of swap). A temporary can also be const: with const type f();, the expressión f() is an rvalue expression that yields a const temporary, but const-ness and temporaries are orthogonal concepts in the language. – David Rodríguez - dribeas Aug 31 '11 at 21:41
1  
queue doesn't have a swap(other) method, so queue<int>().swap(q) doesn't compile. I think you have to use the generic swap(a, b). – Dustin Boswell Oct 5 '11 at 7:59
show 5 more comments

Yes - a bit of a misfeature of the queue class, IMHO. This is what I do:

#include <queue>
using namespace std;;

int main() {
    queue <int> q1;
    // stuff
    q1 = queue<int>();  
}
share|improve this answer
Good, but swap trick is more effective. – Naszta Apr 29 at 20:14

'David Rodriguez', 'anon' Author of the topic asked how to clear the queue "efficiently", so I assume he wants better complexity than linear O(size of queue). Methods that you served have the same complexity: according to stl reference, operator = has complexity O(size of queue). IMHO it's because each element of queue is reserved separately and it isn't allocated in one big memory block, like in vector. So to clear all memory, we have to delete every element separately. So the straightest way to clear stl::queue is one line:

while(!Q.empty()) Q.pop();
share|improve this answer
You can't just look at the O complexity of the operation if you are operating on real data. I would take a O(n^2) algorithm over a O(n) algorithm if the constants on the linear operation make it slower than the quadratic for all n < 2^64, unless I had some strong reason to believe I had to search the IPv6 address space or some other specific problem. Performance in reality is more important to me than performance at the limit. – David Stone Apr 16 '12 at 6:26

You could create a class that inherits from queue and clear the underlying container directly. This is very efficient.

template<class T>
class queue_clearable : public std::queue<T>
{
public:
    void clear()
    {
        c.clear();
    }
};

Maybe your a implementation also allows your Queue object (here JobQueue) to inherit std::queue<Job> instead of having the queue as a member variable. This way you would have direct access to c.clear() in your member functions.

share|improve this answer
STL containers are not designed to be inherited from. In this case you're probably okay because you're not adding any additional member variables, but it's not a good thing to do in general. – bstamour Apr 29 at 20:40

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.