| 
    SNAP Library 2.3, Developer Reference
    2014-06-16 11:58:46
    
   SNAP, a general purpose, high performance system for analysis and manipulation of large networks 
   | 
 
Node iterator. Only forward iteration (operator++) is supported. More...
#include <network.h>

Public Member Functions | |
| TNodeI () | |
| TNodeI (const THashIter &NodeHIter, const TNodeNet *NetPt) | |
| 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.  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 &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... | |
| const TNodeData & | operator() () const | 
| TNodeData & | operator() () | 
| const TNodeData & | GetDat () const | 
| TNodeData & | GetDat () | 
| const TNodeData & | GetInNDat (const int &NodeN) const | 
| TNodeData & | GetInNDat (const int &NodeN) | 
| const TNodeData & | GetOutNDat (const int &NodeN) const | 
| TNodeData & | GetOutNDat (const int &NodeN) | 
| const TNodeData & | GetNbrNDat (const int &NodeN) const | 
| TNodeData & | GetNbrNDat (const int &NodeN) | 
Private Types | |
| typedef THash< TInt, TNode >::TIter | THashIter | 
Private Attributes | |
| THashIter | NodeHI | 
| TNodeNet * | Net | 
Friends | |
| class | TNodeNet< TNodeData > | 
Node iterator. Only forward iteration (operator++) is supported.
      
  | 
  private | 
      
  | 
  inline | 
      
  | 
  inline | 
      
  | 
  inline | 
Definition at line 92 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TNodeData >::TEdgeI::GetSrcNDat().

      
  | 
  inline | 
      
  | 
  inline | 
Returns degree of the current node.
Definition at line 67 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
      
  | 
  inline | 
Returns ID of the current node.
Definition at line 65 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TNodeData >::TEdgeI::GetSrcNId().

      
  | 
  inline | 
Returns in-degree of the current node.
Definition at line 69 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
      
  | 
  inline | 
Definition at line 94 of file network.h.
References TNodeNet< TNodeData >::TNodeI::GetInNId(), TNodeNet< TNodeData >::GetNDat(), and TNodeNet< TNodeData >::TNodeI::Net.

      
  | 
  inline | 
Definition at line 95 of file network.h.
References TNodeNet< TNodeData >::TNodeI::GetInNId(), TNodeNet< TNodeData >::GetNDat(), and TNodeNet< TNodeData >::TNodeI::Net.

      
  | 
  inline | 
Returns ID of NodeN-th in-node (the node pointing to the current node).
Range of NodeN: 0 <= NodeN < GetInDeg().
Definition at line 75 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TNodeData >::TNodeI::GetInNDat().

      
  | 
  inline | 
Definition at line 98 of file network.h.
References TNodeNet< TNodeData >::TNodeI::GetNbrNId(), TNodeNet< TNodeData >::GetNDat(), and TNodeNet< TNodeData >::TNodeI::Net.

      
  | 
  inline | 
Definition at line 99 of file network.h.
References TNodeNet< TNodeData >::TNodeI::GetNbrNId(), TNodeNet< TNodeData >::GetNDat(), and TNodeNet< TNodeData >::TNodeI::Net.

      
  | 
  inline | 
Returns ID of NodeN-th neighboring node.
Range of NodeN: 0 <= NodeN < GetNbrDeg().
Definition at line 83 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TNodeData >::TNodeI::GetNbrNDat().

      
  | 
  inline | 
Returns out-degree of the current node.
Definition at line 71 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TSecTm >::BegEI(), and TNodeNet< TNodeData >::TEdgeI::operator++().

      
  | 
  inline | 
Definition at line 96 of file network.h.
References TNodeNet< TNodeData >::GetNDat(), TNodeNet< TNodeData >::TNodeI::GetOutNId(), and TNodeNet< TNodeData >::TNodeI::Net.
Referenced by TNodeNet< TNodeData >::TEdgeI::GetDstNDat().


      
  | 
  inline | 
Definition at line 97 of file network.h.
References TNodeNet< TNodeData >::GetNDat(), TNodeNet< TNodeData >::TNodeI::GetOutNId(), and TNodeNet< TNodeData >::TNodeI::Net.

      
  | 
  inline | 
Returns ID of NodeN-th out-node (the node the current node points to).
Range of NodeN: 0 <= NodeN < GetOutDeg().
Definition at line 79 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TNodeData >::TEdgeI::GetDstNId(), and TNodeNet< TNodeData >::TNodeI::GetOutNDat().

      
  | 
  inline | 
Tests whether node with ID NId points to the current node.
Definition at line 85 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TNodeData >::TNodeI::IsNbrNId().

      
  | 
  inline | 
Tests whether node with ID NId is a neighbor of the current node.
Definition at line 89 of file network.h.
References TNodeNet< TNodeData >::TNodeI::IsInNId(), and TNodeNet< TNodeData >::TNodeI::IsOutNId().

      
  | 
  inline | 
Tests whether the current node points to node with ID NId.
Definition at line 87 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TNodeData >::TNodeI::IsNbrNId().

      
  | 
  inline | 
      
  | 
  inline | 
Increment iterator.
Definition at line 60 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
      
  | 
  inline | 
      
  | 
  inline | 
Definition at line 58 of file network.h.
References TNodeNet< TNodeData >::TNodeI::Net, and TNodeNet< TNodeData >::TNodeI::NodeHI.
      
  | 
  inline | 
      
  | 
  friend | 
Definition at line 53 of file network.h.
Referenced by TNodeNet< TNodeData >::TNodeI::GetInNDat(), TNodeNet< TNodeData >::TNodeI::GetNbrNDat(), TNodeNet< TNodeData >::TNodeI::GetOutNDat(), and TNodeNet< TNodeData >::TNodeI::operator=().
Definition at line 52 of file network.h.
Referenced by TNodeNet< TNodeData >::TNodeI::GetDat(), TNodeNet< TNodeData >::TNodeI::GetDeg(), TNodeNet< TNodeData >::GetEI(), TNodeNet< TNodeData >::TNodeI::GetId(), TNodeNet< TNodeData >::TNodeI::GetInDeg(), TNodeNet< TNodeData >::TNodeI::GetInNId(), TNodeNet< TNodeData >::TNodeI::GetNbrNId(), TNodeNet< TNodeData >::TNodeI::GetOutDeg(), TNodeNet< TNodeData >::TNodeI::GetOutNId(), TNodeNet< TNodeData >::TNodeI::IsInNId(), TNodeNet< TNodeData >::TNodeI::IsOutNId(), TNodeNet< TNodeData >::TNodeI::operator()(), TNodeNet< TNodeData >::TNodeI::operator++(), TNodeNet< TNodeData >::TNodeI::operator<(), TNodeNet< TNodeData >::TNodeI::operator=(), and TNodeNet< TNodeData >::TNodeI::operator==().