Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
2k views

Using boost::iterator

I wrote a sparse vector class (see #1, #2.) I would like to provide two kinds of iterators: The first set, the regular iterators, can point any element, whether set or unset. If they are read from, ...
4
votes
3answers
233 views

Skipping iterator

I have a sequence of values that I'd like to pass to a function that takes a (iterator begin, iterator end) pair. However, I only want every second element in the original sequence to be processed. ...
4
votes
2answers
674 views

transform_iterator compile problem

HI, I don't like posting compile problems, but I really can't figure this one out. Using this code: #include <map> #include <boost/iterator/transform_iterator.hpp> using namespace std; ...
3
votes
3answers
102 views

C++ boost::ptr_vector<S>::iterator problem

I have this class: template <class S, class P, class A> class Task { private: timeval start; boost::ptr_vector<S> states; boost::ptr_vector<P> policies; public: ...
2
votes
3answers
112 views

A common class type for all bidirectional iterators, c++

I have a bunch of classes which implement geometric objects based on vertices, such as TriangleMesh, PointClouds or Edgesets. They all inherit from VertexBasedGeometry. I now want all of them to ...
2
votes
3answers
123 views

In boost, how to pass boost iterator to a function somehow casted as std::string

See specific question as a comment at the end of the following code. std::string s("my sample string \"with quotes\""); boost::escaped_list_separator<char> els(""," ","\"\'"); ...
2
votes
1answer
478 views

How do I get iterator into boost fusion map?

I'm trying to get iterator for boost::fusion::map, but I'm missing something. The following works with boost::fusion::vector: typedef vector<int,char,double> vector_t; vector_t ...
1
vote
2answers
111 views

C++ template function with pointer argument taken from iterator gives error

I am sorry if the title was not descriptive enough, I have no idea what is wrong with this: template <class S, class P> P* findPolicy(boost::ptr_vector<P> &policies,S *state) { ...
1
vote
1answer
94 views

Boost: iterating over an image region

I have images that I don't own, with adjacent monochrome pixels, which I currently iterate with dumb pointer-increment. I now have the need to iterate over 2D regions, so I'm thinking about the best ...
0
votes
0answers
23 views

boost::iterator_facade and assignment operation

I'm using the boost iterator_facade class to implement a random access iterator for my class. When I try to assign the iterators to one another, the compiler fails saying 'operator =' function is ...
0
votes
1answer
51 views

what approach should I take in heavy iterations?

I got this Java webapp (JSP+Struts+Hibernate+MySQL+tomcat6) in which there are like 20000 users right now and the number is growing up rapidly. I have to rank all the users periodically. The ranking ...
0
votes
1answer
58 views

Problem with Boost bidirectionnal iterator not writable

I try to make bidirectionnal iterators with Boost Iterator. I have implemented some functions as suggested in the documentation here. I have a parent class where the functions to implement are ...
0
votes
3answers
190 views

Using a C++ iterator to read a list from a file?

I am trying to read/deserialize a list of elements from a file (and then filter out some of them). It is a useful approach to use an iterator for this purpose? My current try is #include ...
0
votes
1answer
217 views

iterating getters of a vector of pointers

I am trying to write an iterator class which returns a getter function return value when it is dereferenced. The code works fine, my only problem is that I would like to write the member_ptr_functor ...
0
votes
2answers
476 views

Compiler error with boost iterator adaptor

I am trying to write a simple STL iterator for CArray MFC class using boost iterator adaptor. This is my code: #include <boost/iterator/iterator_adaptor.hpp> #include <afxtempl.h> class ...