I've developed a c++ tree template class for which I would like to write a custom set of iterators.
The GenericTree class iterators should be used as follows:
GenericTree<int> tree;
GenericTree<int>::iterator<PREORDER> preorder_iterator;
for(preorder_iterator = tree.begin(); preorder_iterator != tree.end(); ++preorder_iterato){
//Do something on the node pointed by the preorder_iterator.
}
In the above example, ++preorder_iterator should call the overloaded operator++() method for the iterator class defined for the int and FORWARD types, but the code does not compile. I'm using g++ (Ubuntu 4.8.2-19ubuntu1) 4.8.2
Here is the code of the iterator class. To shorten the sample, I've substituted the GenericTree class with a vector and I've completely omitted the begin() methods source code.
#include <iostream>
#include <string>
#include <vector>
using namespace std;
template<typename P> class GenericTree{
public:
vector<P> data;
GenericTree() {}
~GenericTree(){}
class PREORDER{
};
class POSTORDER{
};
// ----------------------------------------------------------------------------------
template<typename IT> class my_iterator : public std::iterator<std::forward_iterator_tag, P> {
private:
int index;
protected:
public:
my_iterator() { index=0; }
~my_iterator() {}
IT& operator++();
};
// ----------------------------------------------------------------------------------
template<> my_iterator<PREORDER>& my_iterator<PREORDER>::operator++(){
cout << "Preorder visit of GenericTree of nodes containing int values." << endl;
return (*this);
}
template<> my_iterator<POSTORDER>& my_iterator<POSTORDER>::operator++(){
cout << "Postorder visit of GenericTree of nodes containing int values." << endl;
return (*this);
}
};
int main(int argc, char** argv){
GenericTree<int> c_int;
GenericTree<int>::my_iterator<GenericTree<int>::PREORDER> iterator_int;
for(iterator_int = c_int.begin(); iterator_int != c_int.end(); ++iterator_int)
;
GenericTree<string> c_string;
GenericTree<string>::my_iterator<GenericTree<string>::POSTORDER> iterator_str;
for(iterator_str = c_string.begin(); iterator_str != c_string.end(); ++iterator__str)
;
}
Although partial, the previous code returns the same compilation errors I get when i build the full source:
g++ prova.cpp -o prova
prova.cpp:35:11: error: explicit specialization in non-namespace scope ‘class GenericTree<P>’
template<> my_iterator<PREORDER>& my_iterator<PREORDER>::operator++(){
^
prova.cpp:35:70: error: invalid use of incomplete type ‘class GenericTree<P>::my_iterator<GenericTree<P>::PREORDER>’
template<> my_iterator<PREORDER>& my_iterator<PREORDER>::operator++(){
^
prova.cpp:24:30: error: declaration of ‘class GenericTree<P>::my_iterator<GenericTree<P>::PREORDER>’
template<typename IT> class my_iterator : public std::iterator<std::forward_iterator_tag, P> {
^
prova.cpp:40:11: error: explicit specialization in non-namespace scope ‘class GenericTree<P>’
template<> my_iterator<POSTORDER>& my_iterator<POSTORDER>::operator++(){
^
prova.cpp:40:72: error: invalid use of incomplete type ‘class GenericTree<P>::my_iterator<GenericTree<P>::POSTORDER>’
template<> my_iterator<POSTORDER>& my_iterator<POSTORDER>::operator++(){
^
prova.cpp:24:30: error: declaration of ‘class GenericTree<P>::my_iterator<GenericTree<P>::POSTORDER>’
template<typename IT> class my_iterator : public std::iterator<std::forward_iterator_tag, P> {
^
prova.cpp: In function ‘int main(int, char**)’:
prova.cpp:51:27: error: ‘class GenericTree<int>’ has no member named ‘begin’
for(iterator_int = c_int.begin(); iterator_int != c_int.end(); ++iterator_int)
^
prova.cpp:51:58: error: ‘class GenericTree<int>’ has no member named ‘end’
for(iterator_int = c_int.begin(); iterator_int != c_int.end(); ++iterator_int)
^
prova.cpp:57:30: error: ‘class GenericTree<std::basic_string<char> >’ has no member named ‘begin’
for(iterator_str = c_string.begin(); iterator_str != c_string.end(); ++iterator__str)
^
prova.cpp:57:64: error: ‘class GenericTree<std::basic_string<char> >’ has no member named ‘end’
for(iterator_str = c_string.begin(); iterator_str != c_string.end(); ++iterator__str)
^
prova.cpp:57:73: error: ‘iterator__str’ was not declared in this scope
for(iterator_str = c_string.begin(); iterator_str != c_string.end(); ++iterator__str)
^
make: *** [prova] Error 1
I cannot find the correct way to define the two template specializations of the operator++() for the PREORDER and POSTORDER type.
If I use the template<>
keyword, the compiler complains that the specialization is done out of scope and I do not understand why.
Moving the two template specializations out of the GenericTree class body didn't solve the problem.
Thank you in advance for your help!
f.