"Deque" is short for "double-ended queue". It is type of container where items can be inserted or removed from both ends.

learn more… | top users | synonyms

3
votes
2answers
99 views

Why is the efficiency of std::deque so poor?

I wanted to use std::deque, but the overhead memory consumed seems too excessive. Am I doing something incorrectly? #include "windows.h" #include "psapi.h" #include <iostream> #include ...
0
votes
0answers
28 views

Java Generic Deque E popLeft() (removeFirst() is a more common name) issues

Seem to be having issues getting popLeft() to work with my provided JUnit test case. I would assume that a pop left would be head (first item) equals head.next, size--. Just doesnt seem to be going ...
0
votes
2answers
45 views

What's the equivalent std::deque in Qt?

I am on several lines codes from a Qt project to appending into a Qvector every 1s. I noticed that in STL deque could have a better performance in adding a new element into the end that vector. What's ...
1
vote
2answers
125 views

deque::push_back() in c++

I have two structs in my code struct Node { int no; Node* next1; Node* next2; char path1; char path2; }; struct NodeSet { Node* entry; Node* exit; }; and a deque like deque<NodeSet> ...
1
vote
1answer
50 views

New and delete operators without effect on the contents of a Deque of pointers to this class

I have a problem that I have been tackling since the last two days, but as a rather inexperienced programmer it is normal I assume. My question may have an easy solution, but I couldn't find a quick ...
-5
votes
0answers
35 views

IBM MQ .NET client [closed]

My C# client get an 2652 error: Dequeued failed message. Propagating a message to the failure terminalat when it sends the message at the first times, but at second times everything is OK. ...
-4
votes
1answer
43 views

Invalid deque <T> subscript . Why am I getting this error?

I am getting the execption error in the following piece of code. Any suggestions on what might be causing it ? Error : Invalid deque <T> subscript typedef boost::shared_ptr<HistObj> ...
2
votes
3answers
40 views

Simple insert-erase-insert on std::deque<char> gives strange result

Here is a simple program #include <iostream> #include <deque> #include <string.h> std :: deque <char> d; int main () { const char * X = "abcdefg"; d .insert (d .end ...
3
votes
1answer
52 views

Where is the “*simpler* real-time catenable deque” work of Tarjan and Mihaesau?

I've been looking for the work on persistent real-time catenable deques. There are various approaches that have logarithmic complexities for concatenation of deques, and some that have amortized ...
0
votes
1answer
32 views

Deque using custom class cannot push_back

I am getting the following error when attempting to push_back a new custom object: prog7.cpp:66: error: no matching function for call to ‘std::deque<Job, std::allocator<Job> ...
8
votes
5answers
279 views

Why is deque using so much more RAM than vector in C++?

I have a problem I am working on where I need to use some sort of 2 dimensional array. The array is fixed width (four columns), but I need to create extra rows on the fly. To do this, I have been ...
1
vote
5answers
63 views

Python: Removing elements near the front of a list efficiently?

Is there a way to remove elements from the start of a long list of numbers? Right now I am doing del arr[i:i+x] but it is slow since it has to move everything past that point to the left, which is ...
0
votes
0answers
156 views

Implementation of deque based on doubly-linked list

I am working on a project that requires me to implement a deque based on a doubly linked list. The user should be able to carry out the normal operations on the deque. I am looking for some input on ...
-1
votes
0answers
100 views

Implement a deque based on a doubly linked list [closed]

This is a JAVA project. I want to implement a deque based on a doubly linked list. The user should be able to carry out the normal operations on the deque. That means how to combine the programme of ...
0
votes
3answers
151 views

How to avoid `deque iterator not dereferencable` in a std::deque ? Locks?

Currently in my project I have two static methods PushObjects and ProcessObject. The PushObject method pushes back data to a static deque and this method can be accessed by multiple threads but the ...
2
votes
5answers
93 views

Nodes, Queues, De-queues

I'm doing this small project of creating a queue and a de-queue in the same class along with using my own Node class and an interface. The problem i'm facing is I've done all methods but can't get ...
0
votes
1answer
57 views

Why would the size of a deque be less than a small number?

I have a program in which I need to make a deque long enough to hold an item at a certain index. I use the following loop to expand the deque: while(int1+deque1.size()<=int2){ ...
1
vote
3answers
68 views

How can I find-and-return an object in a Dequeue?

I'm using a double-ended queue (java.util.Dequeue) and want to find an object in the queue and return it. I'm currently using the contains() method to check if the queue contains the object, but ...
0
votes
3answers
52 views

How to apply a function to each element of a deque?

I have an std::deque<float> k{3, 4, 5, 0};. How do I apply a function to each element? float o(float k) {if (k > 4) return k - CONSTDIFF;}; After applying this function to each element, ...
1
vote
1answer
105 views

deque memory leak [closed]

Im using deque as follows: struct MyStruct{ string s; struct timeb t; float f; }; std::deque<struct queueMember> dq; //getting a MyStruct object - in a function void foo(string ts, float tf, ...
0
votes
2answers
39 views

how to sort a vector or deque KeyPair

i have a deque <pair<int, int> > r; i need to sort all by second parameter, and return a deque of first all parameters. for example deque<pair<int, int> > r; ...
1
vote
1answer
28 views

Most efficient way to “nibble” the first line of text from a text document then resave it in python

I have a text document that I would like to repeatedly remove the first line of text from every 30 seconds or so. I have already written (or more accurately copied) the code for the python resettable ...
3
votes
5answers
87 views

Insertion on a Deque in Java

I would like to know what this tutorial means when it refers to the following bit of explanation. In particular the part which I highlighted in bold. Insert The addfirst and offerFirst ...
2
votes
2answers
118 views

c# equivalent for c++ vector or deque

I am almost certain this should be a duplicate but I searched for some time and could not find the answer. What should I use in C# to replace C++ vector and deque efficiently. That is I need a ...
1
vote
1answer
91 views

Deque Implementation

I have question regarding the code I found on Internet which uses a deque for finding the max of the element -- #include <iostream> #include <deque> using namespace std; void ...
0
votes
2answers
52 views

Java - Deque manual - Remove Last

I've got some homework to in java to implement a deque system. I've created the other methods and they pass my tests. However I'm having a issue with removing the last one. I have this so far; ...
1
vote
2answers
105 views

Using std::deque::iterator (in C++ STL) for searching and deleting certain elements

I have encountered a problem invoking the following code: #include<deque> using namespace std; deque<int> deq = {0,1,2,3,4,5,6,7,8}; for(auto it = deq.begin(); it != deq.end(); it++){ ...
-1
votes
1answer
52 views

Will this be a non-interference in a multi-threaded environment?

std::deque<T> dq; Thread_function(pointer to queue as argument) // created 8 threads { vertext_found = true; **v is initialized to NULL while ( i < dq->size()) { ...
-1
votes
2answers
52 views

Does default constructor of deque throw? [closed]

(Assuming allocator's default constructor does not throw) Boost implementation of Deque says: Throws if allocator_type's default constructor throws What does C++ standard specify ? Thanks
1
vote
3answers
167 views

Python while loop popleft() - ERROR: Empty deque

I am looking for a more elegant solution to this loop. My deques are created dynamically and can vary in length. In the example below the list is only two items long and could be up to 3 items long. ...
0
votes
2answers
168 views

Storing, retrieving binary data or bytes to and from a file for a std::deque?

I am writing a "replay system" for a game and I'm wondering how I should store the recorded frames? As for now I have this code / structures (note: this code is shortened): struct Point4D { float x, ...
3
votes
3answers
102 views

Is there a deque-like bitset in C++?

I am trying to store a very large search mask with a filter of bits. Both std::vector<bool> and std::bitset<n> store their bool representations as bits, which is different from a normal ...
1
vote
2answers
55 views

Why did I get deque's max_size() less than vector's max_size()?

While learning (& experimenting) with STL containers I found out that the vector max_size = 4611686018427387903 and deque max_size = 2305843009213693951 on my system(gcc version 4.7.2, x86_64). ...
1
vote
1answer
98 views

C++ Populating deque bad allocation

I'm trying to make a huge collection of random numbers to do algorithm analysis. Then I came across this problem that I can't explain. Consider the following code: #include <exception> #include ...
1
vote
1answer
311 views

Deque insert at front and remove from rear

I am writing Deque to be able add and remove from both Front and Rear.... I think my logic is wrong, but I can't figure it out! because when I insert from front It has to remove from rear, but removes ...
-1
votes
1answer
66 views

C++ deque while reading data and storing as a class. error while initializing [closed]

I am reading a file and making my own class to store in a deque. Like this class point{ public: void setX(float n) { x = n; } void setY(float m) { x = m; } ...
0
votes
0answers
177 views

C++ Deque implementation with character arrays

So I'm writing a program that takes in a string of characters in a command line statement, and breaks up the word into two or three pieces (2 for even, first half and second half, 3 for odd, first ...
4
votes
1answer
143 views

Why is std::deque not a vector with memory reserved before index 0?

As far as I understand, the motivation behind deque is to provide a random-access container with efficient push_front. Commonly cited advantages of vector compared to deque include faster traversal ...
1
vote
2answers
140 views

std::deque or std::list [closed]

I am using push_front() and push_back() only. Thus, I do not incur any other cost of using insert() or remove(). I know both containers offer O(1) complexity for each of these functions, deques ...
1
vote
2answers
138 views

Error in collections-deque - Python

I am trying to have a queue using deque in python. The error I keep getting is index out of range perf_his[b][c] = 0 IndexError: deque index out of range Here is a small prototype of the code ...
-2
votes
3answers
82 views

Is this valid when dereferencing an iterator [closed]

for (auto iter = dlQueue.cbegin(); iter != dlQueue.cend(); ++iter) { // reference to the current element in the container if (*iter.id == listid) ...
4
votes
3answers
140 views

Python deque scope?

I am learning Python and have been trying to make a deque. However, I get incorrect output and I am not sure why. My code is as follows: p = [2, 1], [1, 1] init_q= deque() init_q.append(p) for i in ...
1
vote
1answer
49 views

Deque changes bytes to ints when it is extended

from collections import deque recvBuffer=deque() x1=b'\xFF' recvBuffer.append(x1) recvBuffer.extend(x1) x2=recvBuffer.pop() x3=recvBuffer.pop() print(type(x1)) print(type(x2)) print(type(x3)) The ...
0
votes
2answers
100 views

Segmentation faults in deque of user-defined pointers

I have a deque<rect*> rects where rect is a user-defined class. When I try to insert a rect* into it, I get a segmentation fault. gdb traces the problem back to a function called ...
-2
votes
1answer
83 views

deque prints back element instead of the front using front() [closed]

I am using dque to push some elements that I read from a file to the back of the deque but when I print them from the front I only get the last element fgets(line,100,file); qu.push_back(line); ...
2
votes
2answers
94 views

Dealing with deque block size causing performance issues

Anyone who has used 'deque' in performance critical code probably has noticed that (at least in the STL shipped with VS2010) that the block size is 16 bytes. This is the actual snippit from the ...
0
votes
1answer
108 views

Accessing second elements of the map with for_each or transform

I'd like to ask you how could I copy all second elements from map<string, string> myMap to deque<string> myDeq using for_each or transform without creating a functor. I tried it ...
1
vote
2answers
75 views

How to extract from a deque without casting?

I have 5 classes that called operators : * Enter(x) * Exit(x) * Push(b,x,y) * TurnOn(x) * TurnOff(x) And 3 more classes that are called Predicates : * At(x,y) - example : At(Robot,Room3) , ...
0
votes
1answer
64 views

How to extract an element from a deque?

Given the following code : void World::extractStates(deque<string> myDeque) { unsigned int i = 0; string current; // current extracted string while (i < myDeque.size()) // ...
35
votes
5answers
933 views

Why is std::vector so much more popular than std::deque? [duplicate]

Possible Duplicate: Why would I prefer using vector to deque I am curious why is it that std::vector is so much more popular than std::deque. Deque is almost as efficient in lookup, more ...

1 2 3 4 5