Search Results

1
vote

Dynamically sorted STL containers

It sounds like you want a multi-index container. This allows you to create a container and tell th …
1
vote

Is there a standard way to do findfirst, findnext with gcc on linux using stl?

The STL does not, yet, have functions for listing files in a directory. But it does have functions for opening files you are already aware of. Aside from Boost.Filesystem, there is also …
0
votes

using STL to find all elements in a vector

std::vector<int> v; std::vetor<int> matches; for (std::vector<int>::iterator i = v.begin(); i != v.end(); i = std::find_if(i, …
1
vote

How do I examine the contents of an std::vector in gdb, using the icc compiler?

The std::vector template guarantees the data is stored contiguously. If …
0
votes

Remove all but the last 500,000 bytes from a file with the STL

Widefinder 2 has a lot of talk about efficient IO available (or, more accurately, the links under the "Notes" column hav …
2
votes

I think STL is causing my application triple its memory usage.

The STL containers exist to abstract away memory operations. If you have a hard memory limit, then you can't really abstract those away. I would recommend using mmap() to read the file in …
3
votes

Is there any way to check if an iterator is valid?

If your STL does not offer a thread safe std::map, Intel's TBB offers a thread-safe concur …
13
votes

Why is the C++ STL is so heavily based on templates? (and not on *interfaces*)

My understanding is that Stroustrup originally preferred an "OOP-styled" container design, and in fact didn't see other ways to do it. Alex Stepanov is the one responsible for the STL, and …
1
vote

Most efficient way to erase duplicates and sort a c++ vector?

As already stated, unique requires a sorted container. Additionally, unique doesn't actually remove elements from the container. Instead, they are copied to the end, …
1
vote

C++ STD::Vector using templated function taking abnormally long to run

If you have a std::vector, why are you using memcpy? I would recommend using std::copy or std::vector's own methods. It's largely a stylistic c …
0
votes

does (w)ifstream support different encodings

The design of wide character string and wide character stream pre-dates UTF-8, UTF-16 and Unicode. If you want to get technical, the standard string and the standard stream don't necessarily opera …
0
votes

How to make elements of vector unique? (remove non adjacent duplicates)

My question is: Is there any STL algorithm which can remove the non-adjacent duplicates from the vector ? what is its complexity? The STL options ar …
1
vote

C++ valarray vs. vector

I know valarrays have some syntactic sugar I have to say that I don't think std::valarrays have much in way of syntactic sugar. The syntax is diff …
4
votes

C++ boost::thread and automatically locking containers

The currrent C++ standard does not say anything about thread safety for STL containers. Officially it is possible for an STL implementation to be thread safe, but it's very unusual. If your STL i …
2
votes

When should you use an STL other than the one that comes with your compiler?

Aside from the reasons already given, I could imagine using a different STL due to debugging support or as a way to guarant …