0
votes
3answers
104 views
What is the right approach when using STL container for median calculation?
Let's say I need to retrieve the median from a sequence of 1000000 random numeric values.
If using anything but STL::list, I have no (built-in) way to sort sequence for median cal …
2
votes
3answers
98 views
Where do I get sample code in C++ creating iterator for my own container?
I have been searching for sample code creating iterator for my own container, but I haven't really found a good example. I know this been asked before (http://stackoverflow.com/qu …
0
votes
2answers
70 views
Templates and nested classes/structures
I have a simple container :
template <class nodeType> list {
public:
struct node {
nodeType info;
node* next;
};
//...
};
…
3
votes
4answers
121 views
Cycling through a SortedList - Why is this faster?
List1 in the following example is a SortedList(Of MyClass) and contains 251 members.
The first two codeblocks execute in 15.5 seconds.
1:
For cnt As Integer = 1 To 1000000
…
0
votes
2answers
95 views
C++ boost::thread and automatically locking containers
Is there a way to automatically lock an STL container on access, without having to lock and release around it?
1
vote
3answers
56 views
.NET containers - when are members By Reference, By Value?
I migrate between C++ and VB.NET in my coding ventures... which leads to the occasional confusion about when something is by value or by reference in VB.NET.
Let's say for example …
1
vote
3answers
115 views
boost::unordered_map maintains order of insertion?
I am looking for a container which provides std::map like interface but maintains the order in which elements are inserted. Since there will not be too many elements in the map, th …
3
votes
13answers
581 views
Why STL containers are preferred over MFC containers?
Previously I used to use MFC collection classes such CArray and CMap. After a while I switched to STL containers and have been using them for a while. Although I find STL much bett …
0
votes
6answers
144 views
Should I expose iterators and adaptor methods or a whole container in C++?
Consider the piece of code:
class Foo
{ // ...
std::vector<Bar> bars;
};
Should I expose the whole container, or should I expose typedef'd iterator class and write ada …
5
votes
3answers
240 views
STL map onto itself?
I'd like to create a std::map that contains a std::vector of iterators into itself, to implement a simple adjacency list-based graph structure.
However, the type declaration has …
1
vote
3answers
127 views
How to create a container of noncopyable elements
Is there a way use STL containters with non-copyable elements?
something like this:
class noncopyable
{
noncopyable(noncopyable&);
const noncopyable& operator=(no …
0
votes
1answer
202 views
flex spacing inside vbox , hbox
children inside hbox and vbox have spacing between them,
how do you remove this empty space
i need to have 0 space between child elements of a hbox or vbox
1
vote
3answers
116 views
c# file container
Hello!
I am searching for a way to add several files into one file, much like a Zip file. I need to be able to create a file container on the fly and add several word documents, i …
2
votes
1answer
88 views
C# Design template containers?
I have been trying to find a good guide to create a templated control. I am trying to display a few pictures on several different parts of my website so I wanted to add a template …
0
votes
2answers
108 views
Taking iterators two at a time?
I'll often represent and process polylines like so:
typedef std::vector< Point_t > Polyline_t;
double PolylineLength(const Polyline_t& line)
{
double len = 0.0;
…
