Tagged Questions
The deque tag has no wiki summary.
17
votes
6answers
580 views
What really is a deque in STL?
I was looking at STL containers and trying to figure what they really are (i.e. the data structure used), and the deque stopped me: I thought at first that it was a double linked list, which would ...
17
votes
4answers
534 views
Implement an immutable deque as a balanced binary tree?
I've been thinking for a while about how to go about implementing a deque (that is, a double-ended queue) as an immutable data structure.
There seem to be different ways of doing this. AFAIK, ...
11
votes
3answers
455 views
std::deque memory usage - Visual C++, and comparison to others
Follow up to http://stackoverflow.com/questions/4088999/what-the-heck-is-going-on-with-the-memory-overhead-of-stddeque/4089067#4089067
Visual C++ manages deque blocks according to the container ...
9
votes
7answers
1k 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 ...
8
votes
7answers
411 views
Why would I prefer using vector to deque
Since
they are both continues memory container
feature wise, deque has almost vector has but more, since it is more efficient to insert in the front.
why whould any one prefer vector to deque?
7
votes
3answers
848 views
STL deque accessing by index is O(1)?
I've read that accessing elements by position index can be done in constant time in a STL deque. As far as I know, elements in a deque may be stored in several non-contiguous locations, eliminating ...
7
votes
5answers
1k 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 ...
7
votes
4answers
1k 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 ...
6
votes
3answers
379 views
How Are Deques in Python Implemented, and When are They Worse Than Lists?
I've recently gotten into investigating how various data structures are implemented in Python in order to make my code more efficient. In investigating how lists and deques work, I found that I can ...
6
votes
5answers
6k 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??
6
votes
1answer
438 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 ...
5
votes
1answer
1k views
C++ deque's iterator invalidated after push_front()
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 become invalid.
...
5
votes
4answers
2k 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.
...
4
votes
3answers
151 views
About deque<T>'s extra indirection
Wondering why my memory accesses were somewhat slower than I expected, I finally figured out that the Visual C++ implementation of deque indeed has an extra layer of indirection built-in, destroying ...
4
votes
4answers
169 views
Complexity of stl deque::insert()
I learned the complexity of deque::insert() from the C++ standard 2003 (chapter 23.2.1.3) as follows:
In the worst case, inserting a single element into a deque takes time linear in the minimum of ...
4
votes
3answers
139 views
Use slice notation with collections.deque
How would you extract items 3..6 efficiently, elegantly and pythonically from the following deque without altering it:
from collections import deque
q = deque('',maxlen=10)
for i in range(10,20):
...
4
votes
4answers
271 views
Check maxlen of deque in python 2.6
I have had to change from python 2.7 to 2.6.
I've been using a deque with the maxlen property and have been checking what the maxlen is. Apparently you can use maxlen in python 2.6, but in 2.6 deques ...
4
votes
2answers
599 views
std::deque: How do I get an iterator pointing to the element at a specified index?
I have a std::deque, and I want to insert an element at a specified index (I'm aware that std::list would be better at this). The deque::insert() function takes an iterator to specify the location to ...
4
votes
6answers
2k views
Building a multithreaded work-queue (consumer/producer) in C++
I have the following scenario: I have a single thread that is supposed to fill a
container with pairs of integers (in essence, task descriptions), and I have a large
number of worker threads (8-16) ...
3
votes
4answers
118 views
How should I manage multithreaded concurrent access to an ArrayDeque?
My Swing GUI displays a JList of items that are being sequentially removed by a background thread.
Behind the JList is an ArrayDeque<Card>, myHopper, implementing myHopper.getSize() and ...
3
votes
3answers
163 views
Why typical Array List implementations aren't double-ended?
Why aren't ArrayLists generally implemented to be double-ended, which would support fast amortized insertion in the front as well as the back?
Is there ever a disadvantage to using the latter over ...
3
votes
5answers
910 views
How Do I define a Double Brackets/Double Iterator Operator, Similar to Vector of Vectors'?
I'm porting code that uses a very large array of floats, which may trigger malloc failures from c to c++. I asked a question about whether I should use vectors or deques and Niki Yoshiuchi generously ...
3
votes
3answers
177 views
Why not resize and clear works in GotW 54?
Referring to article Gotw 54 by HerbSutter, he explains about
The Right Way To "Shrink-To-Fit" a
vector or deque and
The Right Way to Completely Clear a vector or
deque
Can we just use ...
2
votes
2answers
29 views
simple method to keep last n elements in a queue for vb6?
I am trying to keep the last n elements from a changing list of x elements (where x >> n)
I found out about the deque method, with a fixed length, in other programming languages. I was wondering if ...
2
votes
4answers
85 views
Minimize the number of consecutive equal extractions in a deque of map<string, string>
I hope this place is the best for this kind of question.
I've the following problem (I think is more complex than it appears).
I'm using a double-ended queue (deque) data structure of strings.
deque ...
2
votes
3answers
106 views
UITableViewCell unique identifier?
I'm looking for a way to uniquely identify instances of UITableViewCells even after they have been recycled (dequeued) via DequeueReusableCell(string identifier) - without subclassing or using a ...
2
votes
0answers
100 views
How to load section header dynamically like cells are loaded
I have a UITableView with a lot of rows and a lot of sections (over 500 sections).
Having a lot of rows is not so bad, because only the visible rows are loaded using the ...
2
votes
1answer
87 views
Why is collections.deque slower than collections.defaultdict?
Forgive me for asking in in such a general way as I'm sure their performance is depending on how one uses them, but in my case collections.deque was way slower than collections.defaultdict when I ...
2
votes
1answer
142 views
Are there any benchmarks showing good performance of `collections.deque`?
I was always intrigued by Python's collections.deque object. It seems to be like a list, except that adding/deleting items in the beginning is faster than in a list.
This makes me want to replace ...
2
votes
3answers
483 views
Attempting asynchronous I/O with Win32 threads
I'm writing a serial port software for Windows. To improve performance I'm trying to convert the routines to use asynchronous I/O. I have the code up and working fairly well, but I'm a semi-beginner ...
2
votes
2answers
86 views
What is queueName?
In this code:
$('.slide').delay(2000).fadeOut(500);
Is this how to use dequeue() function? Cause it says dequeue( [ queueName ] ) in jQuery website. Because I want to dequeue the fadeOut(); Is ...
2
votes
4answers
430 views
Problem with invalidation of STL iterators when calling erase
The STL standard defines that when an erase occurs on containers such as std::deque, std::list etc iterators are invalidated.
My question is as follows, assuming the list of integers contained in a ...
2
votes
6answers
764 views
Why do we need Deque data structures in the real world?
Can anyone give me an example of situation where a Deque data structure is needed?
Please don't explain what a deque is...
2
votes
3answers
143 views
Instantiating C++ template functions
I am facing a few problems with "undefined reference to " errors. I may not be able to post the code, but the declarations and the way I am calling the functions are as follows:
Declarations:
...
2
votes
4answers
200 views
Reversing a circular deque without a sentinel
Hey Stackoverflow I'm working on my homework and I'm trying to reverse a circular-linked deque without a sentinel. Here are my data structures:
struct DLink {
TYPE value;
struct DLink * next;
...
2
votes
6answers
1k views
C++ union assignment, is there a good way to do this?
I am working on a project with a library and I must work with unions. Specifically I am working with SDL and the SDL_Event union. I need to make copies of the SDL_Events, and I could find no good ...
2
votes
4answers
127 views
How to store a sequence of timestamped data?
I have an application that need to store a sequence of voltage data, each entry is something like a pair {time, voltage}
the time is not necessarily continuous, if the voltage doesn't move, I will ...
2
votes
3answers
233 views
Adding block of elements to the end of std::deque
I've got a wrapper around a std::deque that I'm using to queue up audio data (coming in blocks via libavcodec, if that matters).
This is the function that takes a buffer of 16-bit data and adds it to ...
1
vote
2answers
49 views
PriorityBlockingDeque/PriorityDeque implementation
I'm looking for a PriorityBlockingDeque(or even a PriorityDeque) implementation since the Java doesn't provide one with the standard library.
Thanks.
Addition: Forgot to mention, any library in ...
1
vote
2answers
76 views
Is this deque thread-safe in python?
I can't decide whether the following deque is thread-safe.
In short, I've created a class with a deque that displays its contents every 1 sec in a new thread (so it won't pause the main program while ...
1
vote
1answer
117 views
C# background worker- how to trigger it for a repetitive task
I am receiving data from a serial port, placing each line into a queue and then de-queuing the lines, formatting them slightly (removing some leading characters, trimming etc), and then displaying the ...
1
vote
4answers
88 views
deque::insert() at index?
How do I insert() a bunch of items to the middle of a deque in linear time?
(The items I am inserting are not accessible through an STL-style iterator.)
1
vote
3answers
98 views
C++ swap() for deque indexes
I have two questions, the second being optional.
First, in the program below (a prototype of a simple card program), I am getting the following error:
(29): error C2660: 'shuffle' : function does ...
1
vote
2answers
195 views
Add an object to the beginning of an NSMutableArray?
Is there an efficient way to add an object to start of an NSMutableArray? I am looking for a good double ended queue in objective C would work as well.
1
vote
2answers
177 views
Problem with deque: map<…, deque<> > fails, but vector and list aren't?
I have a code:
typedef map<Coordinate3D, deque<someClass > > someMap;
someMap *newEM;
someMap::iterator iter;
//...
(*newEM)[iter->first].insert((*newEM)[iter->first].end(),
...
1
vote
3answers
193 views
std::deque memory use
I have implemented a simple statistical engine to return rolling mean and variance using a deque to provide a data queue.
The deque is constructed with a number of entries equal to the rolling ...
1
vote
3answers
166 views
Does binary search have logarithmic performance of deque C++ data structure?
The standard says that std::binary_search(...) and the two related functions std::lower_bound(...) and std::upper_bound(...) are O(log n) if the data structure has random access. So, given that, I ...
1
vote
1answer
108 views
objective-c uitableview when does dequeing cells not make sense
I know the general guideline is to dequeue cells as they go off the screen in a uitableviewcell.
I would think this recommendation/guideline is relaxed when you have the uitableview acting as a form ...
1
vote
2answers
706 views
Why is ArrayDeque better than LinkedList
I am trying to to understand why is java ArrayDeque better than java LinkedList as they both implement Deque interface. I hardly see someone use ArrayDeque in their code. If someone sheds more light ...
1
vote
2answers
193 views
deque implementation options
I need to build my own deque as the environment I program in has no such thing. I find my self torn between two choices as to how to implement it:
I can manage a growable array of pointers to arrays ...