marci@58: #ifndef BFS_ITERATOR_HH marci@58: #define BFS_ITERATOR_HH marci@42: marci@42: #include marci@42: #include marci@75: #include marci@75: #include marci@42: alpar@105: namespace hugo { marci@42: marci@42: template marci@42: struct bfs { marci@42: typedef typename Graph::NodeIt NodeIt; marci@42: typedef typename Graph::EdgeIt EdgeIt; marci@42: typedef typename Graph::EachNodeIt EachNodeIt; marci@42: typedef typename Graph::OutEdgeIt OutEdgeIt; marci@42: Graph& G; marci@42: NodeIt s; marci@42: typename Graph::NodeMap reached; marci@42: typename Graph::NodeMap pred; marci@42: typename Graph::NodeMap dist; marci@42: std::queue bfs_queue; marci@42: bfs(Graph& _G, NodeIt _s) : G(_G), s(_s), reached(_G), pred(_G), dist(_G) { marci@42: bfs_queue.push(s); marci@42: for(EachNodeIt i=G.template first(); i.valid(); ++i) marci@42: reached.set(i, false); marci@42: reached.set(s, true); marci@42: dist.set(s, 0); marci@42: } marci@42: marci@42: void run() { marci@42: while (!bfs_queue.empty()) { marci@42: NodeIt v=bfs_queue.front(); marci@42: OutEdgeIt e=G.template first(v); marci@42: bfs_queue.pop(); marci@42: for( ; e.valid(); ++e) { marci@42: NodeIt w=G.bNode(e); marci@42: std::cout << "scan node " << G.id(w) << " from node " << G.id(v) << std::endl; marci@42: if (!reached.get(w)) { marci@42: std::cout << G.id(w) << " is newly reached :-)" << std::endl; marci@42: bfs_queue.push(w); marci@42: dist.set(w, dist.get(v)+1); marci@42: pred.set(w, e); marci@42: reached.set(w, true); marci@42: } else { marci@42: std::cout << G.id(w) << " is already reached" << std::endl; marci@42: } marci@42: } marci@42: } marci@42: } marci@42: }; marci@42: marci@42: template marci@42: struct bfs_visitor { marci@42: typedef typename Graph::NodeIt NodeIt; marci@42: typedef typename Graph::EdgeIt EdgeIt; marci@42: typedef typename Graph::OutEdgeIt OutEdgeIt; marci@42: Graph& G; marci@42: bfs_visitor(Graph& _G) : G(_G) { } marci@42: void at_previously_reached(OutEdgeIt& e) { marci@42: //NodeIt v=G.aNode(e); marci@42: NodeIt w=G.bNode(e); marci@42: std::cout << G.id(w) << " is already reached" << std::endl; marci@42: } marci@42: void at_newly_reached(OutEdgeIt& e) { marci@42: //NodeIt v=G.aNode(e); marci@42: NodeIt w=G.bNode(e); marci@42: std::cout << G.id(w) << " is newly reached :-)" << std::endl; marci@42: } marci@42: }; marci@42: marci@42: template marci@42: struct bfs_iterator { marci@42: typedef typename Graph::NodeIt NodeIt; marci@42: typedef typename Graph::EdgeIt EdgeIt; marci@42: typedef typename Graph::OutEdgeIt OutEdgeIt; marci@42: Graph& G; marci@42: std::queue& bfs_queue; marci@42: ReachedMap& reached; marci@42: visitor_type& visitor; marci@42: void process() { marci@42: while ( !bfs_queue.empty() && !bfs_queue.front().valid() ) { bfs_queue.pop(); } marci@42: if (bfs_queue.empty()) return; marci@42: OutEdgeIt e=bfs_queue.front(); marci@42: //NodeIt v=G.aNode(e); marci@42: NodeIt w=G.bNode(e); marci@42: if (!reached.get(w)) { marci@42: visitor.at_newly_reached(e); marci@42: bfs_queue.push(G.template first(w)); marci@42: reached.set(w, true); marci@42: } else { marci@42: visitor.at_previously_reached(e); marci@42: } marci@42: } marci@42: bfs_iterator(Graph& _G, std::queue& _bfs_queue, ReachedMap& _reached, visitor_type& _visitor) : G(_G), bfs_queue(_bfs_queue), reached(_reached), visitor(_visitor) { marci@42: //while ( !bfs_queue.empty() && !bfs_queue.front().valid() ) { bfs_queue.pop(); } marci@42: valid(); marci@42: } marci@42: bfs_iterator& operator++() { marci@42: //while ( !bfs_queue.empty() && !bfs_queue.front().valid() ) { bfs_queue.pop(); } marci@42: //if (bfs_queue.empty()) return *this; marci@42: if (!valid()) return *this; marci@42: ++(bfs_queue.front()); marci@42: //while ( !bfs_queue.empty() && !bfs_queue.front().valid() ) { bfs_queue.pop(); } marci@42: valid(); marci@42: return *this; marci@42: } marci@42: //void next() { marci@42: // while ( !bfs_queue.empty() && !bfs_queue.front().valid() ) { bfs_queue.pop(); } marci@42: // if (bfs_queue.empty()) return; marci@42: // ++(bfs_queue.front()); marci@42: // while ( !bfs_queue.empty() && !bfs_queue.front().valid() ) { bfs_queue.pop(); } marci@42: //} marci@42: bool valid() { marci@42: while ( !bfs_queue.empty() && !bfs_queue.front().valid() ) { bfs_queue.pop(); } marci@42: if (bfs_queue.empty()) return false; else return true; marci@42: } marci@42: //bool finished() { marci@42: // while ( !bfs_queue.empty() && !bfs_queue.front().valid() ) { bfs_queue.pop(); } marci@42: // if (bfs_queue.empty()) return true; else return false; marci@42: //} marci@42: operator EdgeIt () { return bfs_queue.front(); } marci@42: marci@42: }; marci@42: marci@42: template marci@42: struct bfs_iterator1 { marci@42: typedef typename Graph::NodeIt NodeIt; marci@42: typedef typename Graph::EdgeIt EdgeIt; marci@42: typedef typename Graph::OutEdgeIt OutEdgeIt; marci@42: Graph& G; marci@42: std::queue& bfs_queue; marci@42: ReachedMap& reached; marci@42: bool _newly_reached; marci@42: bfs_iterator1(Graph& _G, std::queue& _bfs_queue, ReachedMap& _reached) : G(_G), bfs_queue(_bfs_queue), reached(_reached) { marci@42: valid(); marci@42: if (!bfs_queue.empty() && bfs_queue.front().valid()) { marci@42: OutEdgeIt e=bfs_queue.front(); marci@42: NodeIt w=G.bNode(e); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(G.template first(w)); marci@42: reached.set(w, true); marci@42: _newly_reached=true; marci@42: } else { marci@42: _newly_reached=false; marci@42: } marci@42: } marci@42: } marci@42: bfs_iterator1& operator++() { marci@42: if (!valid()) return *this; marci@42: ++(bfs_queue.front()); marci@42: valid(); marci@42: if (!bfs_queue.empty() && bfs_queue.front().valid()) { marci@42: OutEdgeIt e=bfs_queue.front(); marci@42: NodeIt w=G.bNode(e); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(G.template first(w)); marci@42: reached.set(w, true); marci@42: _newly_reached=true; marci@42: } else { marci@42: _newly_reached=false; marci@42: } marci@42: } marci@42: return *this; marci@42: } marci@42: bool valid() { marci@42: while ( !bfs_queue.empty() && !bfs_queue.front().valid() ) { bfs_queue.pop(); } marci@42: if (bfs_queue.empty()) return false; else return true; marci@42: } marci@42: operator OutEdgeIt() { return bfs_queue.front(); } marci@42: //ize marci@42: bool newly_reached() { return _newly_reached; } marci@42: marci@42: }; marci@42: marci@42: template marci@42: struct BfsIterator { marci@42: typedef typename Graph::NodeIt NodeIt; marci@42: Graph& G; marci@42: std::queue& bfs_queue; marci@42: ReachedMap& reached; marci@42: bool b_node_newly_reached; marci@42: OutEdgeIt actual_edge; marci@42: BfsIterator(Graph& _G, marci@42: std::queue& _bfs_queue, marci@42: ReachedMap& _reached) : marci@42: G(_G), bfs_queue(_bfs_queue), reached(_reached) { marci@42: actual_edge=bfs_queue.front(); marci@42: if (actual_edge.valid()) { marci@42: NodeIt w=G.bNode(actual_edge); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(G.firstOutEdge(w)); marci@42: reached.set(w, true); marci@42: b_node_newly_reached=true; marci@42: } else { marci@42: b_node_newly_reached=false; marci@42: } marci@42: } marci@42: } marci@42: BfsIterator& marci@42: operator++() { marci@42: if (bfs_queue.front().valid()) { marci@42: ++(bfs_queue.front()); marci@42: actual_edge=bfs_queue.front(); marci@42: if (actual_edge.valid()) { marci@42: NodeIt w=G.bNode(actual_edge); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(G.firstOutEdge(w)); marci@42: reached.set(w, true); marci@42: b_node_newly_reached=true; marci@42: } else { marci@42: b_node_newly_reached=false; marci@42: } marci@42: } marci@42: } else { marci@42: bfs_queue.pop(); marci@42: actual_edge=bfs_queue.front(); marci@42: if (actual_edge.valid()) { marci@42: NodeIt w=G.bNode(actual_edge); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(G.firstOutEdge(w)); marci@42: reached.set(w, true); marci@42: b_node_newly_reached=true; marci@42: } else { marci@42: b_node_newly_reached=false; marci@42: } marci@42: } marci@42: } marci@42: return *this; marci@42: } marci@42: bool finished() { return bfs_queue.empty(); } marci@42: operator OutEdgeIt () { return actual_edge; } marci@42: bool bNodeIsNewlyReached() { return b_node_newly_reached; } marci@42: bool aNodeIsExamined() { return !(actual_edge.valid()); } marci@42: }; marci@42: marci@42: marci@42: template marci@42: struct DfsIterator { marci@42: typedef typename Graph::NodeIt NodeIt; marci@42: Graph& G; marci@42: std::stack& bfs_queue; marci@42: ReachedMap& reached; marci@42: bool b_node_newly_reached; marci@42: OutEdgeIt actual_edge; marci@42: DfsIterator(Graph& _G, marci@42: std::stack& _bfs_queue, marci@42: ReachedMap& _reached) : marci@42: G(_G), bfs_queue(_bfs_queue), reached(_reached) { marci@42: actual_edge=bfs_queue.top(); marci@42: if (actual_edge.valid()) { marci@42: NodeIt w=G.bNode(actual_edge); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(G.firstOutEdge(w)); marci@42: reached.set(w, true); marci@42: b_node_newly_reached=true; marci@42: } else { marci@42: ++(bfs_queue.top()); marci@42: b_node_newly_reached=false; marci@42: } marci@42: } else { marci@42: bfs_queue.pop(); marci@42: } marci@42: } marci@42: DfsIterator& marci@42: operator++() { marci@42: actual_edge=bfs_queue.top(); marci@42: if (actual_edge.valid()) { marci@42: NodeIt w=G.bNode(actual_edge); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(G.firstOutEdge(w)); marci@42: reached.set(w, true); marci@42: b_node_newly_reached=true; marci@42: } else { marci@42: ++(bfs_queue.top()); marci@42: b_node_newly_reached=false; marci@42: } marci@42: } else { marci@42: bfs_queue.pop(); marci@42: } marci@42: return *this; marci@42: } marci@42: bool finished() { return bfs_queue.empty(); } marci@42: operator OutEdgeIt () { return actual_edge; } marci@42: bool bNodeIsNewlyReached() { return b_node_newly_reached; } marci@99: bool aNodeIsExamined() { return !(actual_edge.valid()); } marci@42: }; marci@42: marci@42: template marci@42: struct BfsIterator1 { marci@42: typedef typename Graph::NodeIt NodeIt; marci@42: Graph& G; marci@42: std::queue& bfs_queue; marci@42: ReachedMap& reached; marci@42: bool b_node_newly_reached; marci@42: OutEdgeIt actual_edge; marci@42: BfsIterator1(Graph& _G, marci@42: std::queue& _bfs_queue, marci@42: ReachedMap& _reached) : marci@42: G(_G), bfs_queue(_bfs_queue), reached(_reached) { marci@42: actual_edge=bfs_queue.front(); marci@42: if (actual_edge.valid()) { marci@42: NodeIt w=G.bNode(actual_edge); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(OutEdgeIt(G, w)); marci@42: reached.set(w, true); marci@42: b_node_newly_reached=true; marci@42: } else { marci@42: b_node_newly_reached=false; marci@42: } marci@42: } marci@42: } marci@42: void next() { marci@42: if (bfs_queue.front().valid()) { marci@42: ++(bfs_queue.front()); marci@42: actual_edge=bfs_queue.front(); marci@42: if (actual_edge.valid()) { marci@42: NodeIt w=G.bNode(actual_edge); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(OutEdgeIt(G, w)); marci@42: reached.set(w, true); marci@42: b_node_newly_reached=true; marci@42: } else { marci@42: b_node_newly_reached=false; marci@42: } marci@42: } marci@42: } else { marci@42: bfs_queue.pop(); marci@42: actual_edge=bfs_queue.front(); marci@42: if (actual_edge.valid()) { marci@42: NodeIt w=G.bNode(actual_edge); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(OutEdgeIt(G, w)); marci@42: reached.set(w, true); marci@42: b_node_newly_reached=true; marci@42: } else { marci@42: b_node_newly_reached=false; marci@42: } marci@42: } marci@42: } marci@42: //return *this; marci@42: } marci@42: bool finished() { return bfs_queue.empty(); } marci@42: operator OutEdgeIt () { return actual_edge; } marci@42: bool bNodeIsNewlyReached() { return b_node_newly_reached; } marci@42: bool aNodeIsExamined() { return !(actual_edge.valid()); } marci@42: }; marci@42: marci@42: marci@42: template marci@42: struct DfsIterator1 { marci@42: typedef typename Graph::NodeIt NodeIt; marci@42: Graph& G; marci@42: std::stack& bfs_queue; marci@42: ReachedMap& reached; marci@42: bool b_node_newly_reached; marci@42: OutEdgeIt actual_edge; marci@42: DfsIterator1(Graph& _G, marci@42: std::stack& _bfs_queue, marci@42: ReachedMap& _reached) : marci@42: G(_G), bfs_queue(_bfs_queue), reached(_reached) { marci@42: //actual_edge=bfs_queue.top(); marci@42: //if (actual_edge.valid()) { marci@42: // NodeIt w=G.bNode(actual_edge); marci@42: //if (!reached.get(w)) { marci@42: // bfs_queue.push(OutEdgeIt(G, w)); marci@42: // reached.set(w, true); marci@42: // b_node_newly_reached=true; marci@42: //} else { marci@42: // ++(bfs_queue.top()); marci@42: // b_node_newly_reached=false; marci@42: //} marci@42: //} else { marci@42: // bfs_queue.pop(); marci@42: //} marci@42: } marci@42: void next() { marci@42: actual_edge=bfs_queue.top(); marci@42: if (actual_edge.valid()) { marci@42: NodeIt w=G.bNode(actual_edge); marci@42: if (!reached.get(w)) { marci@42: bfs_queue.push(OutEdgeIt(G, w)); marci@42: reached.set(w, true); marci@42: b_node_newly_reached=true; marci@42: } else { marci@42: ++(bfs_queue.top()); marci@42: b_node_newly_reached=false; marci@42: } marci@42: } else { marci@42: bfs_queue.pop(); marci@42: } marci@42: //return *this; marci@42: } marci@42: bool finished() { return bfs_queue.empty(); } marci@42: operator OutEdgeIt () { return actual_edge; } marci@42: bool bNodeIsNewlyReached() { return b_node_newly_reached; } marci@42: bool aNodeIsLeaved() { return !(actual_edge.valid()); } marci@42: }; marci@42: marci@58: template marci@58: class BfsIterator2 { marci@58: typedef typename Graph::NodeIt NodeIt; marci@58: const Graph& G; marci@58: std::queue bfs_queue; marci@58: ReachedMap reached; marci@58: bool b_node_newly_reached; marci@58: OutEdgeIt actual_edge; marci@58: public: marci@58: BfsIterator2(const Graph& _G) : G(_G), reached(G, false) { } marci@64: void pushAndSetReached(NodeIt s) { marci@58: reached.set(s, true); marci@58: if (bfs_queue.empty()) { marci@58: bfs_queue.push(G.template first(s)); marci@58: actual_edge=bfs_queue.front(); marci@58: if (actual_edge.valid()) { marci@58: NodeIt w=G.bNode(actual_edge); marci@58: if (!reached.get(w)) { marci@58: bfs_queue.push(G.template first(w)); marci@58: reached.set(w, true); marci@58: b_node_newly_reached=true; marci@58: } else { marci@58: b_node_newly_reached=false; marci@58: } marci@58: } //else { marci@58: //} marci@58: } else { marci@58: bfs_queue.push(G.template first(s)); marci@58: } marci@58: } marci@58: BfsIterator2& marci@58: operator++() { marci@58: if (bfs_queue.front().valid()) { marci@58: ++(bfs_queue.front()); marci@58: actual_edge=bfs_queue.front(); marci@58: if (actual_edge.valid()) { marci@58: NodeIt w=G.bNode(actual_edge); marci@58: if (!reached.get(w)) { marci@58: bfs_queue.push(G.template first(w)); marci@58: reached.set(w, true); marci@58: b_node_newly_reached=true; marci@58: } else { marci@58: b_node_newly_reached=false; marci@58: } marci@58: } marci@58: } else { marci@58: bfs_queue.pop(); marci@58: if (!bfs_queue.empty()) { marci@58: actual_edge=bfs_queue.front(); marci@64: if (actual_edge.valid()) { marci@64: NodeIt w=G.bNode(actual_edge); marci@64: if (!reached.get(w)) { marci@64: bfs_queue.push(G.template first(w)); marci@64: reached.set(w, true); marci@64: b_node_newly_reached=true; marci@64: } else { marci@64: b_node_newly_reached=false; marci@64: } marci@58: } marci@58: } marci@58: } marci@58: return *this; marci@58: } marci@58: bool finished() const { return bfs_queue.empty(); } marci@58: operator OutEdgeIt () const { return actual_edge; } marci@58: bool isBNodeNewlyReached() const { return b_node_newly_reached; } marci@58: bool isANodeExamined() const { return !(actual_edge.valid()); } marci@58: const ReachedMap& getReachedMap() const { return reached; } marci@58: const std::queue& getBfsQueue() const { return bfs_queue; } marci@58: }; marci@58: marci@75: marci@75: template marci@75: class BfsIterator3 { marci@75: typedef typename Graph::NodeIt NodeIt; marci@75: const Graph& G; marci@75: std::queue< std::pair > bfs_queue; marci@75: ReachedMap reached; marci@75: bool b_node_newly_reached; marci@75: OutEdgeIt actual_edge; marci@75: public: marci@75: BfsIterator3(const Graph& _G) : G(_G), reached(G, false) { } marci@75: void pushAndSetReached(NodeIt s) { marci@75: reached.set(s, true); marci@75: if (bfs_queue.empty()) { marci@75: bfs_queue.push(std::pair(s, G.template first(s))); marci@75: actual_edge=bfs_queue.front().second; marci@75: if (actual_edge.valid()) { marci@75: NodeIt w=G.bNode(actual_edge); marci@75: if (!reached.get(w)) { marci@75: bfs_queue.push(std::pair(w, G.template first(w))); marci@75: reached.set(w, true); marci@75: b_node_newly_reached=true; marci@75: } else { marci@75: b_node_newly_reached=false; marci@75: } marci@75: } //else { marci@75: //} marci@75: } else { marci@75: bfs_queue.push(std::pair(s, G.template first(s))); marci@75: } marci@75: } marci@75: BfsIterator3& marci@75: operator++() { marci@75: if (bfs_queue.front().second.valid()) { marci@75: ++(bfs_queue.front().second); marci@75: actual_edge=bfs_queue.front().second; marci@75: if (actual_edge.valid()) { marci@75: NodeIt w=G.bNode(actual_edge); marci@75: if (!reached.get(w)) { marci@75: bfs_queue.push(std::pair(w, G.template first(w))); marci@75: reached.set(w, true); marci@75: b_node_newly_reached=true; marci@75: } else { marci@75: b_node_newly_reached=false; marci@75: } marci@75: } marci@75: } else { marci@75: bfs_queue.pop(); marci@75: if (!bfs_queue.empty()) { marci@75: actual_edge=bfs_queue.front().second; marci@75: if (actual_edge.valid()) { marci@75: NodeIt w=G.bNode(actual_edge); marci@75: if (!reached.get(w)) { marci@75: bfs_queue.push(std::pair(w, G.template first(w))); marci@75: reached.set(w, true); marci@75: b_node_newly_reached=true; marci@75: } else { marci@75: b_node_newly_reached=false; marci@75: } marci@75: } marci@75: } marci@75: } marci@75: return *this; marci@75: } marci@75: bool finished() const { return bfs_queue.empty(); } marci@75: operator OutEdgeIt () const { return actual_edge; } marci@75: bool isBNodeNewlyReached() const { return b_node_newly_reached; } marci@75: bool isANodeExamined() const { return !(actual_edge.valid()); } marci@75: NodeIt aNode() const { return bfs_queue.front().first; } marci@75: NodeIt bNode() const { return G.bNode(actual_edge); } marci@75: const ReachedMap& getReachedMap() const { return reached; } marci@75: //const std::queue< std::pair >& getBfsQueue() const { return bfs_queue; } marci@75: }; marci@75: marci@144: marci@144: template */ > marci@75: class BfsIterator4 { marci@75: typedef typename Graph::NodeIt NodeIt; marci@75: const Graph& G; marci@75: std::queue bfs_queue; marci@144: ReachedMap& reached; marci@75: bool b_node_newly_reached; marci@75: OutEdgeIt actual_edge; marci@144: bool own_reached_map; marci@75: public: marci@144: BfsIterator4(const Graph& _G, ReachedMap& _reached) : marci@144: G(_G), reached(_reached), marci@144: own_reached_map(false) { } marci@144: BfsIterator4(const Graph& _G) : marci@144: G(_G), reached(*(new ReachedMap(G /*, false*/))), marci@144: own_reached_map(true) { } marci@144: ~BfsIterator4() { if (own_reached_map) delete &reached; } marci@75: void pushAndSetReached(NodeIt s) { marci@168: //std::cout << "mimi" << &reached << std::endl; marci@75: reached.set(s, true); marci@168: //std::cout << "mumus" << std::endl; marci@75: if (bfs_queue.empty()) { marci@168: //std::cout << "bibi1" << std::endl; marci@75: bfs_queue.push(s); marci@168: //std::cout << "zizi" << std::endl; marci@75: G.getFirst(actual_edge, s); marci@168: //std::cout << "kiki" << std::endl; marci@148: if (G.valid(actual_edge)/*.valid()*/) { marci@75: NodeIt w=G.bNode(actual_edge); marci@75: if (!reached.get(w)) { marci@75: bfs_queue.push(w); marci@75: reached.set(w, true); marci@75: b_node_newly_reached=true; marci@75: } else { marci@75: b_node_newly_reached=false; marci@75: } marci@75: } marci@75: } else { marci@168: //std::cout << "bibi2" << std::endl; marci@75: bfs_queue.push(s); marci@75: } marci@75: } marci@75: BfsIterator4& marci@75: operator++() { marci@148: if (G.valid(actual_edge)/*.valid()*/) { marci@148: /*++*/G.next(actual_edge); marci@148: if (G.valid(actual_edge)/*.valid()*/) { marci@75: NodeIt w=G.bNode(actual_edge); marci@75: if (!reached.get(w)) { marci@75: bfs_queue.push(w); marci@75: reached.set(w, true); marci@75: b_node_newly_reached=true; marci@75: } else { marci@75: b_node_newly_reached=false; marci@75: } marci@75: } marci@75: } else { marci@75: bfs_queue.pop(); marci@75: if (!bfs_queue.empty()) { marci@75: G.getFirst(actual_edge, bfs_queue.front()); marci@148: if (G.valid(actual_edge)/*.valid()*/) { marci@75: NodeIt w=G.bNode(actual_edge); marci@75: if (!reached.get(w)) { marci@75: bfs_queue.push(w); marci@75: reached.set(w, true); marci@75: b_node_newly_reached=true; marci@75: } else { marci@75: b_node_newly_reached=false; marci@75: } marci@75: } marci@75: } marci@75: } marci@75: return *this; marci@75: } marci@75: bool finished() const { return bfs_queue.empty(); } marci@75: operator OutEdgeIt () const { return actual_edge; } marci@75: bool isBNodeNewlyReached() const { return b_node_newly_reached; } marci@148: bool isANodeExamined() const { return !(G.valid(actual_edge)/*.valid()*/); } marci@75: NodeIt aNode() const { return bfs_queue.front(); } marci@75: NodeIt bNode() const { return G.bNode(actual_edge); } marci@75: const ReachedMap& getReachedMap() const { return reached; } marci@75: const std::queue& getBfsQueue() const { return bfs_queue; } marci@144: }; marci@75: marci@148: marci@158: template */ > marci@148: class BfsIterator5 { marci@148: typedef typename GraphWrapper::NodeIt NodeIt; marci@158: typedef typename GraphWrapper::OutEdgeIt OutEdgeIt; marci@148: GraphWrapper G; marci@148: std::queue bfs_queue; marci@148: ReachedMap& reached; marci@148: bool b_node_newly_reached; marci@148: OutEdgeIt actual_edge; marci@148: bool own_reached_map; marci@148: public: marci@148: BfsIterator5(const GraphWrapper& _G, ReachedMap& _reached) : marci@148: G(_G), reached(_reached), marci@148: own_reached_map(false) { } marci@148: BfsIterator5(const GraphWrapper& _G) : marci@148: G(_G), reached(*(new ReachedMap(G /*, false*/))), marci@148: own_reached_map(true) { } marci@158: // BfsIterator5(const typename GraphWrapper::BaseGraph& _G, marci@158: // ReachedMap& _reached) : marci@158: // G(_G), reached(_reached), marci@158: // own_reached_map(false) { } marci@158: // BfsIterator5(const typename GraphWrapper::BaseGraph& _G) : marci@158: // G(_G), reached(*(new ReachedMap(G /*, false*/))), marci@158: // own_reached_map(true) { } marci@148: ~BfsIterator5() { if (own_reached_map) delete &reached; } marci@148: void pushAndSetReached(NodeIt s) { marci@148: reached.set(s, true); marci@148: if (bfs_queue.empty()) { marci@148: bfs_queue.push(s); marci@148: G.getFirst(actual_edge, s); marci@148: if (G.valid(actual_edge)/*.valid()*/) { marci@148: NodeIt w=G.bNode(actual_edge); marci@148: if (!reached.get(w)) { marci@148: bfs_queue.push(w); marci@148: reached.set(w, true); marci@148: b_node_newly_reached=true; marci@148: } else { marci@148: b_node_newly_reached=false; marci@148: } marci@148: } marci@148: } else { marci@148: bfs_queue.push(s); marci@148: } marci@148: } marci@158: BfsIterator5& marci@148: operator++() { marci@148: if (G.valid(actual_edge)/*.valid()*/) { marci@148: /*++*/G.next(actual_edge); marci@148: if (G.valid(actual_edge)/*.valid()*/) { marci@148: NodeIt w=G.bNode(actual_edge); marci@148: if (!reached.get(w)) { marci@148: bfs_queue.push(w); marci@148: reached.set(w, true); marci@148: b_node_newly_reached=true; marci@148: } else { marci@148: b_node_newly_reached=false; marci@148: } marci@148: } marci@148: } else { marci@148: bfs_queue.pop(); marci@148: if (!bfs_queue.empty()) { marci@148: G.getFirst(actual_edge, bfs_queue.front()); marci@148: if (G.valid(actual_edge)/*.valid()*/) { marci@148: NodeIt w=G.bNode(actual_edge); marci@148: if (!reached.get(w)) { marci@148: bfs_queue.push(w); marci@148: reached.set(w, true); marci@148: b_node_newly_reached=true; marci@148: } else { marci@148: b_node_newly_reached=false; marci@148: } marci@148: } marci@148: } marci@148: } marci@148: return *this; marci@148: } marci@148: bool finished() const { return bfs_queue.empty(); } marci@148: operator OutEdgeIt () const { return actual_edge; } marci@148: bool isBNodeNewlyReached() const { return b_node_newly_reached; } marci@148: bool isANodeExamined() const { return !(G.valid(actual_edge)/*.valid()*/); } marci@148: NodeIt aNode() const { return bfs_queue.front(); } marci@148: NodeIt bNode() const { return G.bNode(actual_edge); } marci@148: const ReachedMap& getReachedMap() const { return reached; } marci@148: const std::queue& getBfsQueue() const { return bfs_queue; } marci@148: }; marci@148: marci@144: template */ > marci@144: class DfsIterator4 { marci@99: typedef typename Graph::NodeIt NodeIt; marci@99: const Graph& G; marci@99: std::stack dfs_stack; marci@99: bool b_node_newly_reached; marci@99: OutEdgeIt actual_edge; marci@99: NodeIt actual_node; marci@144: ReachedMap& reached; marci@144: bool own_reached_map; marci@144: public: marci@144: DfsIterator4(const Graph& _G, ReachedMap& _reached) : marci@144: G(_G), reached(_reached), marci@144: own_reached_map(false) { } marci@144: DfsIterator4(const Graph& _G) : marci@144: G(_G), reached(*(new ReachedMap(G /*, false*/))), marci@144: own_reached_map(true) { } marci@144: ~DfsIterator4() { if (own_reached_map) delete &reached; } marci@99: void pushAndSetReached(NodeIt s) { marci@133: actual_node=s; marci@99: reached.set(s, true); marci@99: dfs_stack.push(G.template first(s)); marci@99: } marci@99: DfsIterator4& marci@99: operator++() { marci@99: actual_edge=dfs_stack.top(); marci@99: //actual_node=G.aNode(actual_edge); marci@148: if (G.valid(actual_edge)/*.valid()*/) { marci@99: NodeIt w=G.bNode(actual_edge); marci@99: actual_node=w; marci@99: if (!reached.get(w)) { marci@99: dfs_stack.push(G.template first(w)); marci@99: reached.set(w, true); marci@99: b_node_newly_reached=true; marci@99: } else { marci@133: actual_node=G.aNode(actual_edge); marci@148: /*++*/G.next(dfs_stack.top()); marci@99: b_node_newly_reached=false; marci@99: } marci@99: } else { marci@99: //actual_node=G.aNode(dfs_stack.top()); marci@99: dfs_stack.pop(); marci@99: } marci@99: return *this; marci@99: } marci@99: bool finished() const { return dfs_stack.empty(); } marci@99: operator OutEdgeIt () const { return actual_edge; } marci@99: bool isBNodeNewlyReached() const { return b_node_newly_reached; } marci@148: bool isANodeExamined() const { return !(G.valid(actual_edge)/*.valid()*/); } marci@133: NodeIt aNode() const { return actual_node; /*FIXME*/} marci@99: NodeIt bNode() const { return G.bNode(actual_edge); } marci@99: const ReachedMap& getReachedMap() const { return reached; } marci@99: const std::stack& getDfsStack() const { return dfs_stack; } marci@99: }; marci@99: marci@158: template */ > marci@148: class DfsIterator5 { marci@75: typedef typename GraphWrapper::NodeIt NodeIt; marci@158: typedef typename GraphWrapper::OutEdgeIt OutEdgeIt; marci@148: GraphWrapper G; marci@148: std::stack dfs_stack; marci@75: bool b_node_newly_reached; marci@75: OutEdgeIt actual_edge; marci@148: NodeIt actual_node; marci@148: ReachedMap& reached; marci@148: bool own_reached_map; marci@75: public: marci@148: DfsIterator5(const GraphWrapper& _G, ReachedMap& _reached) : marci@148: G(_G), reached(_reached), marci@148: own_reached_map(false) { } marci@148: DfsIterator5(const GraphWrapper& _G) : marci@148: G(_G), reached(*(new ReachedMap(G /*, false*/))), marci@148: own_reached_map(true) { } marci@148: ~DfsIterator5() { if (own_reached_map) delete &reached; } marci@75: void pushAndSetReached(NodeIt s) { marci@148: actual_node=s; marci@75: reached.set(s, true); marci@148: dfs_stack.push(G.template first(s)); marci@75: } marci@158: DfsIterator5& marci@75: operator++() { marci@148: actual_edge=dfs_stack.top(); marci@148: //actual_node=G.aNode(actual_edge); marci@148: if (G.valid(actual_edge)/*.valid()*/) { marci@148: NodeIt w=G.bNode(actual_edge); marci@148: actual_node=w; marci@148: if (!reached.get(w)) { marci@148: dfs_stack.push(G.template first(w)); marci@148: reached.set(w, true); marci@148: b_node_newly_reached=true; marci@148: } else { marci@148: actual_node=G.aNode(actual_edge); marci@148: /*++*/G.next(dfs_stack.top()); marci@148: b_node_newly_reached=false; marci@75: } marci@75: } else { marci@148: //actual_node=G.aNode(dfs_stack.top()); marci@148: dfs_stack.pop(); marci@75: } marci@75: return *this; marci@75: } marci@148: bool finished() const { return dfs_stack.empty(); } marci@75: operator OutEdgeIt () const { return actual_edge; } marci@75: bool isBNodeNewlyReached() const { return b_node_newly_reached; } marci@148: bool isANodeExamined() const { return !(G.valid(actual_edge)/*.valid()*/); } marci@148: NodeIt aNode() const { return actual_node; /*FIXME*/} marci@148: NodeIt bNode() const { return G.bNode(actual_edge); } marci@75: const ReachedMap& getReachedMap() const { return reached; } marci@148: const std::stack& getDfsStack() const { return dfs_stack; } marci@148: }; marci@75: marci@75: marci@75: alpar@105: } // namespace hugo marci@42: marci@58: #endif //BFS_ITERATOR_HH