| 
    SNAP Library 6.0, Developer Reference
    2020-12-09 16:24:20
    
   SNAP, a general purpose, high performance system for analysis and manipulation of large networks 
   | 
 
Node iterator. Only forward iteration (operator++) is supported. More...
#include <graph.h>

Public Member Functions | |
| TNodeI () | |
| TNodeI (const THashIter &NodeHIter, const TNEGraph *GraphPt) | |
| TNodeI (const TNodeI &NodeI) | |
| TNodeI & | operator= (const TNodeI &NodeI) | 
| TNodeI & | operator++ (int) | 
| Increment iterator.  More... | |
| TNodeI & | operator-- (int) | 
| Decrement iterator.  More... | |
| bool | operator< (const TNodeI &NodeI) const | 
| bool | operator== (const TNodeI &NodeI) const | 
| int | GetId () const | 
| Returns ID of the current node.  More... | |
| int | GetDeg () const | 
| Returns degree of the current node, the sum of in-degree and out-degree.  More... | |
| int | GetInDeg () const | 
| Returns in-degree of the current node.  More... | |
| int | GetOutDeg () const | 
| Returns out-degree of the current node.  More... | |
| int | GetInNId (const int &EdgeN) const | 
| Returns ID of EdgeN-th in-node (the node pointing to the current node).  More... | |
| int | GetOutNId (const int &EdgeN) const | 
| Returns ID of EdgeN-th out-node (the node the current node points to).  More... | |
| int | GetNbrNId (const int &EdgeN) const | 
| Returns ID of EdgeN-th neighboring node.  More... | |
| bool | IsInNId (const int &NId) const | 
| Tests whether node with ID NId points to the current node.  More... | |
| bool | IsOutNId (const int &NId) const | 
| Tests whether the current node points to node with ID NId.  More... | |
| bool | IsNbrNId (const int &NId) const | 
| Tests whether node with ID NId is a neighbor of the current node.  More... | |
| int | GetInEId (const int &EdgeN) const | 
| Returns ID of EdgeN-th in-edge.  More... | |
| int | GetOutEId (const int &EdgeN) const | 
| Returns ID of EdgeN-th out-edge.  More... | |
| int | GetNbrEId (const int &EdgeN) const | 
| Returns ID of EdgeN-th in or out-edge.  More... | |
| bool | IsInEId (const int &EId) const | 
| Tests whether the edge with ID EId is an in-edge of current node.  More... | |
| bool | IsOutEId (const int &EId) const | 
| Tests whether the edge with ID EId is an out-edge of current node.  More... | |
| bool | IsNbrEId (const int &EId) const | 
| Tests whether the edge with ID EId is an in or out-edge of current node.  More... | |
Private Types | |
| typedef THash< TInt, TNode >::TIter | THashIter | 
Private Attributes | |
| THashIter | NodeHI | 
| const TNEGraph * | Graph | 
Friends | |
| class | TNEGraph | 
Node iterator. Only forward iteration (operator++) is supported.
      
  | 
  private | 
      
  | 
  inline | 
      
  | 
  inline | 
Returns ID of the current node.
Definition at line 724 of file graph.h.
Referenced by TNEGraph::AddNode(), and GetNbrNId().

      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  inline | 
Returns ID of EdgeN-th in-node (the node pointing to the current node).
Range of NodeN: 0 <= NodeN < GetInDeg().
Definition at line 734 of file graph.h.
References TNEGraph::GetEdge().

      
  | 
  inline | 
      
  | 
  inline | 
Returns ID of EdgeN-th neighboring node.
Range of NodeN: 0 <= NodeN < GetNbrDeg().
Definition at line 742 of file graph.h.
References TNEGraph::TEdge::GetDstNId(), TNEGraph::GetEdge(), GetId(), and TNEGraph::TEdge::GetSrcNId().

      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  inline | 
Returns ID of EdgeN-th out-node (the node the current node points to).
Range of NodeN: 0 <= NodeN < GetOutDeg().
Definition at line 738 of file graph.h.
References TNEGraph::GetEdge().

      
  | 
  inline | 
Tests whether the edge with ID EId is an in-edge of current node.
Definition at line 758 of file graph.h.
Referenced by IsNbrEId().

| bool TNEGraph::TNodeI::IsInNId | ( | const int & | NId | ) | const | 
Tests whether node with ID NId points to the current node.
Definition at line 468 of file graph.cpp.
References edge, TNEGraph::GetEdge(), TNEGraph::TNode::GetInDeg(), TNEGraph::TNode::GetInEId(), Graph, and NodeHI.
Referenced by IsNbrNId().


      
  | 
  inline | 
Tests whether the edge with ID EId is an in or out-edge of current node.
Definition at line 762 of file graph.h.
References IsInEId(), and IsOutEId().

      
  | 
  inline | 
Tests whether node with ID NId is a neighbor of the current node.
Definition at line 749 of file graph.h.
References IsInNId(), and IsOutNId().

      
  | 
  inline | 
Tests whether the edge with ID EId is an out-edge of current node.
Definition at line 760 of file graph.h.
Referenced by IsNbrEId().

| bool TNEGraph::TNodeI::IsOutNId | ( | const int & | NId | ) | const | 
Tests whether the current node points to node with ID NId.
Definition at line 477 of file graph.cpp.
References edge, TNEGraph::TNode::GetOutDeg(), and TNEGraph::TNode::GetOutEId().
Referenced by IsNbrNId().


      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  private | 
Definition at line 710 of file graph.h.
Referenced by IsInNId(), and operator=().
      
  | 
  private | 
Definition at line 709 of file graph.h.
Referenced by IsInNId(), operator<(), operator=(), and operator==().