SNAP Library 3.0, Developer Reference
2016-07-20 17:56:49
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 95 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 70 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
|
inline |
Returns ID of the current node.
Definition at line 68 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 72 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
|
inline |
Definition at line 97 of file network.h.
References TNodeNet< TNodeData >::TNodeI::GetInNId(), TNodeNet< TNodeData >::GetNDat(), and TNodeNet< TNodeData >::TNodeI::Net.
|
inline |
Definition at line 98 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 78 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TNodeData >::TNodeI::GetInNDat().
|
inline |
Definition at line 101 of file network.h.
References TNodeNet< TNodeData >::TNodeI::GetNbrNId(), TNodeNet< TNodeData >::GetNDat(), and TNodeNet< TNodeData >::TNodeI::Net.
|
inline |
Definition at line 102 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 86 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 74 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TSecTm >::BegEI(), and TNodeNet< TNodeData >::TEdgeI::operator++().
|
inline |
Definition at line 99 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 100 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 82 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 88 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 92 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 90 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
Referenced by TNodeNet< TNodeData >::TNodeI::IsNbrNId().
|
inline |
|
inline |
Increment iterator.
Definition at line 63 of file network.h.
References TNodeNet< TNodeData >::TNodeI::NodeHI.
|
inline |
|
inline |
Definition at line 61 of file network.h.
References TNodeNet< TNodeData >::TNodeI::Net, and TNodeNet< TNodeData >::TNodeI::NodeHI.
|
inline |
|
friend |
Definition at line 56 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 55 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==().