0
votes
2answers
38 views
Checking for list membership using the STL and a unary function adapted functor
I've attempted to write a brief utility functor that takes two std::pair items and tests for their equality, but disregarding the ordering of the elements. Additionally (and this i …
4
votes
5answers
244 views
Reversing strings in a vector using for_each and bind
Hi! I was wandering how it's possible to reverese strings that are contained in a vector using a single for_each command just in one "simple" line.
Yea, I know it is easy with a c …
3
votes
3answers
148 views
C++ deque’s iterator invalidated after push_front()
Hello all!
Just now, I'm reading Josuttis' STL book.
As far as I know -- c++ vector is a c-array that can be reallocated. So, I understand, why after push_back() all iterators and …
3
votes
4answers
144 views
Would C# benefit from distinctions between kinds of enumerators, like C++ iterators?
I have been thinking about the IEnumerator.Reset() method. I read in the MSDN documentation that it only there for COM interop. As a C++ programmer it looks to me like a IEnumerato …
3
votes
7answers
602 views
“On-line” (iterator) algorithms for estimating statistical median, mode, skewness, kurtosis?
Is there an algorithm to estimate the median, mode, skewness, and/or kurtosis of set of values, but that does NOT require storing all the values in memory at once?
I'd like to cal …
3
votes
2answers
56 views
‘Finally’ Block in Iterators
Is there any way in a C# iterator block to provide a block of code which will be run when the foreach ends (either naturally of by being broken out of), say to clean up resources?
…
1
vote
3answers
50 views
iterator_to_array
DatePeriod is a PHP class for handling recurring dates. It has a very limited number of methods. So when I want to do basic array functions with the recurring dates, I have to cop …
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;
…
2
votes
3answers
176 views
iterating through TWO sparse matrices
I'm using boost sparse matrices holding bool's and trying to write a comparison function for storing them in a map. It is a very simple comparison function. Basically, the idea is …
12
votes
6answers
396 views
Joining a set of ordered-integer yielding Python iterators.
Here is a seemingly simple problem: given a list of iterators that yield sequences of integers in ascending order, write a concise generator that yields only the integers that appe …
28
votes
22answers
3k views
Why use iterators instead of array indices?
Take the following two lines of code:
for (int i = 0; i < some_vector.size(); i++)
{
//do stuff
}
And this:
for (some_iterator = some_vector.begin(); some_iterator != so …
0
votes
2answers
60 views
how can a compiler that recognizes the iterators be implemented?
I have been using iterators for a while and I love them.
But although I have thought hard about it, I could not figure out "how a compiler that recognizes the iterators" be implem …
4
votes
4answers
378 views
Why does my Boost.Regex search report only one match iteration?
I am trying to find out how many regex matches are in a string. I'm using an iterator to iterate the matches, and and integer to record how many there were.
long int before = Get …
1
vote
5answers
624 views
How to iterate over a STL map full of strings in C++
I have the following issue related to iterating over an associative array of strings defined using std::map.
-- snip --
class something
{
//...
private:
std::map<std: …
0
votes
3answers
169 views
Different types of iterators
Are there other types of iterators? Any links that show different types of iterators?
The only one I know is .NET's IEnumerable.
Particularly for C#, but all others are welcomed …
