| 
    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 <graphmp.h>

Public Member Functions | |
| TNodeI () | |
| TNodeI (const THashIter &NodeHIter) | |
| TNodeI (const TNodeI &NodeI) | |
| TNodeI & | operator= (const TNodeI &NodeI) | 
| TNodeI & | operator++ (int) | 
| Increment 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... | |
| void | SortNIdV () | 
| Sorts the adjacency lists of the current node.  More... | |
| int | GetInNId (const int &NodeN) const | 
| Returns ID of NodeN-th in-node (the node pointing to the current node).  More... | |
| int | GetOutNId (const int &NodeN) const | 
| Returns ID of NodeN-th out-node (the node the current node points to).  More... | |
| int | GetNbrNId (const int &NodeN) const | 
| Returns ID of NodeN-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... | |
Private Types | |
| typedef THashMP< TInt, TNode >::TIter | THashIter | 
Private Attributes | |
| THashIter | NodeHI | 
Friends | |
| class | TNGraphMP | 
Node iterator. Only forward iteration (operator++) is supported.
      
  | 
  private | 
      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  inline | 
Returns ID of the current node.
Definition at line 72 of file graphmp.h.
Referenced by TNGraphMP::AddNode(), and TNGraphMP::TEdgeI::GetSrcNId().

      
  | 
  inline | 
      
  | 
  inline | 
Returns ID of NodeN-th in-node (the node pointing to the current node).
Range of NodeN: 0 <= NodeN < GetInDeg().
Definition at line 84 of file graphmp.h.
      
  | 
  inline | 
      
  | 
  inline | 
Returns out-degree of the current node.
Definition at line 78 of file graphmp.h.
Referenced by TNGraphMP::BegEI(), and TNGraphMP::TEdgeI::operator++().

      
  | 
  inline | 
Returns ID of NodeN-th out-node (the node the current node points to).
Range of NodeN: 0 <= NodeN < GetOutDeg().
Definition at line 88 of file graphmp.h.
Referenced by TNGraphMP::TEdgeI::GetDstNId().

      
  | 
  inline | 
Tests whether node with ID NId points to the current node.
Definition at line 94 of file graphmp.h.
Referenced by IsNbrNId().

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

      
  | 
  inline | 
Tests whether the current node points to node with ID NId.
Definition at line 96 of file graphmp.h.
Referenced by IsNbrNId().

      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  private | 
Definition at line 61 of file graphmp.h.
Referenced by TNGraphMP::GetEI(), operator<(), operator=(), and operator==().