1
vote
2answers
41 views
invalid initialization of non-const reference of type ‘int&’ from a temporary of type ‘MyClass<int>::iterator*’
I'm getting the following error from g++ while trying to add iterator support for my linked list class.
LinkedList.hpp: In member function ‘Type& exscape::LinkedList::iterator …
0
votes
2answers
45 views
Is it possible to use a RA-iterator out of range?
Consider the following code:
typedef std::vector<int> cont_t; // Any container with RA-iterators
typedef cont_t::const_iterator citer_t; // Random access iterator
cont_t v( …
2
votes
4answers
108 views
Anybody know why the Output of this program is like this?(using iterator in c#)
using System;
using System.Collections;
namespace Iterator_test
{
class Day
{
int days_idx = -1;
private String[] days = { "mon", "tue", "wed","thu","fri","sat","sun" };
…
0
votes
4answers
55 views
How to insert into nested vector without invalidating iterator(s)
I have some boolean expressions to evaluate and process. Maybe this would have all been better with Boost, but I'm still learning STL and didn't go that way. I'm now learning abo …
0
votes
3answers
67 views
[Vector] Iterator and 2d vector
vector< vector<int> >::iterator temp = mincost.end();
vector<int> a = *temp;
if ( *temp != *(temp--) )
return 0;
mincost is a 2d vector, I want to get the las …
2
votes
1answer
29 views
C# 2.0 - Is there any way to do a `GroupBy` with a yielded itterator block?
I'm working with a C# 2.0 app so linq/lambda answers will be no help here.
Basically I'm faced with a situation where i need to yield return an object but only if one if it's prop …
1
vote
2answers
50 views
“error: assignment of read-only location” in unordered_map (C++)
I have an awkward hash table (specifically, an unordered_map) with int keys and vector< vector< int >> data. I periodically need to update elements in this two-dimensio …
1
vote
2answers
71 views
Iterating over binary tree w/o control of stack or dynamic allocation
Is there an efficient, practical way to iterate over a binary tree given the following constraints:
You do not have control of the call stack, and thus may not use recursion. Al …
1
vote
4answers
96 views
Why doesn’t my custom iterator work with the STL copy?
I wrote an OutputIterator for an answer to another question. Here it is:
#include <queue>
using namespace std;
template< typename T, typename U >
class queue_inserte …
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
4answers
156 views
Overloading *(iterator + n) and *(n + iterator) in a C++ iterator class?
(Note: I'm writing this project for learning only; comments about it being redundant are... uh, redundant. ;)
I'm trying to implement a random access iterator, but I've found very …
2
votes
3answers
122 views
How can I traverse a file system with a generator?
I'm trying to create a utility class for traversing all the files in a directory, including those within subdirectories and sub-subdirectories. I tried to use a generator because g …
1
vote
2answers
72 views
C++ Find the number of elements in a range from an STL::multimap
I have a STL::multimap and I search it with equal_range to return an upper and lower bound. Can I find the number of elements in this range without iterating through them all and c …
2
votes
5answers
149 views
c++: what exactly does &rand do?
This is an excerpt of some c++ code, that i'll have to explain in detail in some days:
std::vector<int> vct(8, 5);
std::generate(vct.begin(), vct.end(), &rand);
std::c …
1
vote
3answers
58 views
C++ compilation error using string and istream_iterator
When trying to compile the following:
#include <string>
#include <iterator>
#include <iostream>
using namespace std;
int main() {
string s(istream_iterator< …
