Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
207 views

list iterator + operator

// ((++currentEntry)--) is equivalent to (currentEntry + 1). Kind of. menuEntries.insert((++currentEntry)--, newEntries.begin(), newEntries.end()); So I have the world's worst piece of code here. Is ...
5
votes
6answers
319 views

How to make sure iterators do not overpass end()?

I have been using advance on some iterators, but I am afraid of a possible leapfrog above end(). I would like to make sure my iterators stay between the bounds, I thought of the distance but it seems ...
5
votes
3answers
316 views

How to convert a sorted std::list of std::pair to a std::map

I have got a std::list< std::pair<std::string,double> >, which I know is sorted according to the std::string element. Since I would like to do a lot of std::find_if based on the ...
5
votes
2answers
197 views

C++ Linked list behavior

I have some C code, where in there are two linked lists(say A and B) and A is inserted at a particular position into B and A still has elements. How do I simulate the same behavior effectively using ...
5
votes
5answers
1k views

Destructor called on object when adding it to std::list

I have a Foo object, and a std::list holding instances of it. My problem is that when I add a new instance to the list, it first calls the ctor but then also the dtor. And then the dtor on another ...
4
votes
5answers
252 views

Exposing a std::list as read only

I have a class that contains, among other things, an std::list. I want to expose this list but only in such a way that the structure and the data it contains are read only, but still can be used with ...
3
votes
1answer
229 views

What makes the gcc std::list sort implementation so fast?

I have a linked list implementation and I'm experimenting with both Mergesort and QuickSort algorithms. What I don't understand is why the sort operation in std::list is so fast. Looking at the ...
3
votes
2answers
181 views

c++ std::list sort preserve order [closed]

Possible Duplicate: Is std::list<>::sort stable? Does C++ std::list sort function is guaranteed to preserve the order of equal elements in the list? E.g. if we have objects A, B and C ...
2
votes
3answers
64 views

Create std::list of templated structs (C++)

I have a struct defined as follows: template <typename T> struct data { int num; T *ptr; }; I want to create a std::list of various data structs using different types like: struct ...
2
votes
5answers
100 views

accessing std::list in the middle

I have a dummy question. I always read that C++ std::list container has constant time for inserting elements at the beginning, at the end and in the middle: Which is the correct way to insert an ...
2
votes
3answers
250 views

Keeping std::list iterators valid through insertion

Note: This is not a question whether I should "use list or deque". It's a question about the validity of iterators in the face of insert(). This may be a simple question and I'm just too dense to ...
2
votes
1answer
276 views

OpenMP parallelization and deleting from a vector of lists

gang. First, a high-level description of the problem & approach. I have a list containing images and pixel locations in each image - a list of lists. I want to pick n items at random from that ...
2
votes
2answers
636 views

std::list remove calling delete on pointer?

I ran valgrind on my program because of a segfault I can't figure out. It detected a problem here... Address 0x75c7670 is 0 bytes inside a block of size 12 free'd at 0x4024851: operator ...
1
vote
3answers
153 views

Sorting the EdgeList in boost::graph

I would like to to sort the edge List of boost::graph defined as followed: struct Vertex{ int index; }; struct Edge{ double weight; }; boost::adjacency_list<boost::listS, boost::listS, ...
1
vote
2answers
181 views

Correctly delete pointers in std::list allocated elsewhere

I have a SpriteHandler class that allows the user to register a pointer to a Sprite object for drawing, all it does is access methods on the object. I wanted to write a safety catch that automatically ...
1
vote
1answer
100 views

Correctly handling std::list erase with list size 1

Consider the following: for (it = list.begin(); it != list.end(); ++it) { if (!(*it)->alive) { it = list.erase(it); } } this works fine as long as list.size() > 1. Once the ...
1
vote
4answers
354 views

std::list fixed size

How can I create std::list with a fixed element count?
1
vote
4answers
1k views

C++ Storing large data in std::list<> ..should I use reference counting?

How do people normally manage copying a list of large objects around? Here's my situation: Currently I have this: typedef std::vector<float> Image; and I'm storing it in a ...
0
votes
2answers
40 views

How to properly point back to std::list after erasing en element (double for loop)?

I want to erase an element from the std::list and then point back to this list but when I do it this way for(std::list<CvRect>::iterator it = listOfCvRects.begin(); it != listOfCvRects.end(); ...
0
votes
2answers
91 views

Usage of std::list::sort hangs my program

I have a program in C++ that organizes a bunch of college courses I want to take. It does so by taking input from the console (with things like course code, description, etc.), organizing each course ...
0
votes
1answer
78 views

Initialize std::vector from std::list using iterators

I'm trying to initialize a std::vector from a std::list efficiently, but I'm not having any luck. For example, it'd like to something like this: void myFunc(std::list<double>::iterator begin, ...
0
votes
3answers
143 views

Using delete on pointer to std::list

In my program I have a pointer to a std::list object, it is allocated like so. d_list_p = new std::list<some_type*>(); Then later in my program I delete it like so. d_list_p->clear(); ...
0
votes
0answers
107 views

unresolved external symbol errors with std::list contents [Solved]

I wrote a custom socket class for a server and everything was going swimmingly. Then I decided to get clever and stick all my code in a custom nested namespace: In socket.h namespace test { ...
0
votes
1answer
68 views

Replacing std::list object given an iterator

Given an iterator into a std::list, how do you replace the object at the position that the iterator references? Currently all I can think of is calling insert with the new object and iterator (to ...
0
votes
1answer
185 views

Nested stl lists

I want to make an array of lists that contain a list. For example something like this list<list<int>> L[5]; Obviously this code doesn't work in all compilers. Which is the best way to ...
0
votes
1answer
71 views

Returning std::list trough an iterator NOT using templates

refering to this answer, the second code block. My question is: If I know I will be processing only std::lists<int>, and only <int>. Is there a way to write this (the second block and the ...
0
votes
1answer
71 views

Combining two std::lists of differing types: Possible?

I have a std::list of type Foo* and another of type Bar* of unequal size. Both types implement a positioning system that allows the list to be sorted by z-coordinate for draw order (really just a ...
0
votes
2answers
135 views

Memory leak in using a list of lists

I had some code thrown at me to 'productionize.' I ran a memory leak checker and it calls out the following line within the 'for' loop below as a memory leak. someStruct->arrayMap = new ...
0
votes
1answer
194 views

Easily initialise an std::list of std::strings?

In C++0x, what I want would be: std::list<std::string> colours = {"red", "blue", "green", "grey", "pink", "violet"}; What's the easiest way in standard, non-0x C++?
0
votes
2answers
101 views

Pushing back object, then erasing it at its previous location in std::list

Note that the order can go either way (erase first then push back, just that this way doesn't require creating a local reference to the object). for ( GameObjItr gameObj = m_gameObjects.begin(); ...
0
votes
0answers
219 views

core dump during std::_List_node_base::unhook()

I have a program where std::list is used. The program uses threads which act on the std::list as producers and consumers. When a message is dealt with by the consumer, it is removed from the list ...
0
votes
1answer
39 views

What free tools or strategies can help debug a multi-threading corruption bug?

I have a client server application with multi-threading. The server side is failing with a std::list getting corrupted resulting in a SEGV. I suspect that there is some kind of cross thread timing ...
0
votes
1answer
614 views

Pointer for item in iteration over std::list

I'm working on a very basic game and I have a std::list collection of objects that pertain to my game. I declared it as: std::list<Target> targets; When I iterate over it, using for ...
0
votes
2answers
155 views

Can't push_front() a standard library list with my objects in C++

I have an class and I would like to use the standard library list to store a list of them. I essentially want to push_front() the list. So my code is like this: #include <list> /* ... lots of ...