Tagged Questions

1
vote
1answer
34 views

Lock Free Deque that supports removing an arbitrary node

This needs to be lock free as it has to run in the interrupt handler of an SMP system. I cannot take locks. I have a contiguous array holding some values. Some of the entries in this array are …
3
votes
3answers
86 views

Why not resize and clear works in GotW 54?

Referring to article Gotw 54 by HerbSutter, he explain about 1.Tthe Right Way To "Shrink-To-Fit" a vector or deque and 2.The Right Way to Completely Clear a vector or deque Can we just …
3
votes
3answers
171 views

C++ deque’s iterator invalidated after push_front()

Hello all! Just now, I'm reading Josuttis' STL book. As far as I know -- c++ vector is a c-array that can be reallocated. So, I understand, why after push_back() all iterators and references can …
3
votes
5answers
517 views

C++ STL containers: what’s the difference between deque and list?

What is the difference between the two? I mean the methods are all the same. So, for a user, they work identically. Is that correct??
1
vote
5answers
272 views

Why is it so slow iterating over a big std::list ?

As title suggests, I had problems with a program of mine where I used a std::list as a stack and also to iterate over all elements of the list. The program was taking way too long when the lists …
6
votes
1answer
157 views

Best way to obtain indexed access to a Python queue, thread-safe

I have a queue (from the Queue module), and I want to get indexed access into it. (i.e., being able to ask for item number four in the queue, without removing it from the queue.) I saw that a queue …
0
votes
2answers
211 views

Java Deque without using any of the existing classes like LinkedList?

Hi, I've got to write a very short bit of code on a deque, however I'm not sure how to write the code for the methods, if someone could help me with one of the methods, (eg. a method to add an object …
3
votes
3answers
261 views

How to release memory from std::deque?

I'm using a std::deque to store a fairly large number of objects. If I remove a bunch of those objects, it appears to me that its memory usage does not decrease, in a similar fashion to std::vector. …
-1
votes
1answer
137 views

std::deque of large objects, how to push_front/push_back effectively without copy?

I have a large class, say: class Foo { char buffer[0x100]; }; I have a deque: deque<Foo> d; I want to add an item at the front of d without any copy. Ideally this should be just a …
6
votes
7answers
445 views

What is a data structure that has O(1) for append, prepend, and retrieve element at any location?

I'm looking for Java solution but any general answer is also OK. Vector/ArrayList is O(1) for append and retrieve, but O(n) for prepend. LinkedList (in Java implemented as doubly-linked-list) is …
1
vote
2answers
222 views

Confusion on iterators invalidation in deque

I'm bit confused regarding iterator invalidation in deque. (In the context of this question) Following is the excerpts from -- The C++ Standard Library: A Tutorial and Reference, By Nicolai M. …
2
votes
5answers
299 views

Why does push_back or push_front invalidate a deque’s iterators?

As the title asks. My understanding of a deque was that it allocated "blocks". I don't see how allocating more space invalidates iterators, and if anything, one would think that a deque's iterators …
1
vote
3answers
243 views

STL-like vector with arbitrary index range

What I want is something similar to STL vector when it comes to access complexity, reallocation on resize, etc. I want it to support arbitrary index range, for example there could be elements indexed …
7
votes
4answers
485 views

Java equivalent of std::deque

I'm a relatively new Java programmer coming from C++/STL, and am looking for a class with these characteristics (which the C++ std::deque has, as I understand it): O(1) performance for …