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
TDirNet::TNodeI Class Reference

Node iterator. Only forward iteration (operator++) is supported. More...

#include <network.h>

Collaboration diagram for TDirNet::TNodeI:

Public Member Functions

 TNodeI ()
 
 TNodeI (const THashIter &NodeHIter)
 
 TNodeI (const TNodeI &NodeI)
 
TNodeIoperator= (const TNodeI &NodeI)
 
TNodeIoperator++ (int)
 Increment iterator. More...
 
TNodeIoperator-- (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...
 
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 THash< TInt, TNode >::TIter THashIter
 

Private Attributes

THashIter NodeHI
 

Friends

class TDirNet
 

Detailed Description

Node iterator. Only forward iteration (operator++) is supported.

Definition at line 4003 of file network.h.

Member Typedef Documentation

typedef THash<TInt, TNode>::TIter TDirNet::TNodeI::THashIter
private

Definition at line 4005 of file network.h.

Constructor & Destructor Documentation

TDirNet::TNodeI::TNodeI ( )
inline

Definition at line 4008 of file network.h.

4008 : NodeHI() { }
THashIter NodeHI
Definition: network.h:4006
TDirNet::TNodeI::TNodeI ( const THashIter NodeHIter)
inline

Definition at line 4009 of file network.h.

4009 : NodeHI(NodeHIter) { }
THashIter NodeHI
Definition: network.h:4006
TDirNet::TNodeI::TNodeI ( const TNodeI NodeI)
inline

Definition at line 4010 of file network.h.

4010 : NodeHI(NodeI.NodeHI) { }
THashIter NodeHI
Definition: network.h:4006

Member Function Documentation

int TDirNet::TNodeI::GetDeg ( ) const
inline

Returns degree of the current node, the sum of in-degree and out-degree.

Definition at line 4022 of file network.h.

4022 { return NodeHI.GetDat().GetDeg(); }
THashIter NodeHI
Definition: network.h:4006
int TDirNet::TNodeI::GetId ( ) const
inline

Returns ID of the current node.

Definition at line 4020 of file network.h.

Referenced by TDirNet::AddNode(), TDirNet::AddSAttrDatN(), TDirNet::DelSAttrDatN(), TDirNet::GetSAttrDatN(), TDirNet::GetSAttrVN(), and TDirNet::TEdgeI::GetSrcNId().

4020 { return NodeHI.GetDat().GetId(); }
THashIter NodeHI
Definition: network.h:4006

Here is the caller graph for this function:

int TDirNet::TNodeI::GetInDeg ( ) const
inline

Returns in-degree of the current node.

Definition at line 4024 of file network.h.

4024 { return NodeHI.GetDat().GetInDeg(); }
THashIter NodeHI
Definition: network.h:4006
int TDirNet::TNodeI::GetInNId ( const int &  NodeN) const
inline

Returns ID of NodeN-th in-node (the node pointing to the current node).

Range of NodeN: 0 <= NodeN < GetInDeg().

Definition at line 4032 of file network.h.

4032 { return NodeHI.GetDat().GetInNId(NodeN); }
THashIter NodeHI
Definition: network.h:4006
int TDirNet::TNodeI::GetNbrNId ( const int &  NodeN) const
inline

Returns ID of NodeN-th neighboring node.

Range of NodeN: 0 <= NodeN < GetNbrDeg().

Definition at line 4040 of file network.h.

4040 { return NodeHI.GetDat().GetNbrNId(NodeN); }
THashIter NodeHI
Definition: network.h:4006
int TDirNet::TNodeI::GetOutDeg ( ) const
inline

Returns out-degree of the current node.

Definition at line 4026 of file network.h.

Referenced by TDirNet::BegEI(), and TDirNet::TEdgeI::operator++().

4026 { return NodeHI.GetDat().GetOutDeg(); }
THashIter NodeHI
Definition: network.h:4006

Here is the caller graph for this function:

int TDirNet::TNodeI::GetOutNId ( const int &  NodeN) const
inline

Returns ID of NodeN-th out-node (the node the current node points to).

Range of NodeN: 0 <= NodeN < GetOutDeg().

Definition at line 4036 of file network.h.

Referenced by TDirNet::TEdgeI::GetDstNId().

4036 { return NodeHI.GetDat().GetOutNId(NodeN); }
THashIter NodeHI
Definition: network.h:4006

Here is the caller graph for this function:

bool TDirNet::TNodeI::IsInNId ( const int &  NId) const
inline

Tests whether node with ID NId points to the current node.

Definition at line 4042 of file network.h.

4042 { return NodeHI.GetDat().IsInNId(NId); }
THashIter NodeHI
Definition: network.h:4006
bool TDirNet::TNodeI::IsNbrNId ( const int &  NId) const
inline

Tests whether node with ID NId is a neighbor of the current node.

Definition at line 4046 of file network.h.

4046 { return IsOutNId(NId) || IsInNId(NId); }
bool IsOutNId(const int &NId) const
Tests whether the current node points to node with ID NId.
Definition: network.h:4044
bool IsInNId(const int &NId) const
Tests whether node with ID NId points to the current node.
Definition: network.h:4042
bool TDirNet::TNodeI::IsOutNId ( const int &  NId) const
inline

Tests whether the current node points to node with ID NId.

Definition at line 4044 of file network.h.

4044 { return NodeHI.GetDat().IsOutNId(NId); }
THashIter NodeHI
Definition: network.h:4006
TNodeI& TDirNet::TNodeI::operator++ ( int  )
inline

Increment iterator.

Definition at line 4013 of file network.h.

4013 { NodeHI++; return *this; }
THashIter NodeHI
Definition: network.h:4006
TNodeI& TDirNet::TNodeI::operator-- ( int  )
inline

Decrement iterator.

Definition at line 4015 of file network.h.

4015 { NodeHI--; return *this; }
THashIter NodeHI
Definition: network.h:4006
bool TDirNet::TNodeI::operator< ( const TNodeI NodeI) const
inline

Definition at line 4017 of file network.h.

References NodeHI.

4017 { return NodeHI < NodeI.NodeHI; }
THashIter NodeHI
Definition: network.h:4006
TNodeI& TDirNet::TNodeI::operator= ( const TNodeI NodeI)
inline

Definition at line 4011 of file network.h.

References NodeHI.

4011 { NodeHI = NodeI.NodeHI; return *this; }
THashIter NodeHI
Definition: network.h:4006
bool TDirNet::TNodeI::operator== ( const TNodeI NodeI) const
inline

Definition at line 4018 of file network.h.

References NodeHI.

4018 { return NodeHI == NodeI.NodeHI; }
THashIter NodeHI
Definition: network.h:4006
void TDirNet::TNodeI::SortNIdV ( )
inline

Sorts the adjacency lists of the current node.

Definition at line 4028 of file network.h.

4028 { NodeHI.GetDat().SortNIdV(); }
THashIter NodeHI
Definition: network.h:4006

Friends And Related Function Documentation

friend class TDirNet
friend

Definition at line 4047 of file network.h.

Member Data Documentation

THashIter TDirNet::TNodeI::NodeHI
private

Definition at line 4006 of file network.h.

Referenced by TDirNet::GetEI(), operator<(), operator=(), and operator==().


The documentation for this class was generated from the following file: