SNAP Library 3.0, User 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 TNodeEdgeNet *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, 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... | |
const TNodeData & | operator() () const |
TNodeData & | operator() () |
const TNodeData & | GetDat () const |
TNodeData & | GetDat () |
const TNodeData & | GetInNDat (const int &EdgeN) const |
TNodeData & | GetInNDat (const int &EdgeN) |
const TNodeData & | GetOutNDat (const int &EdgeN) const |
TNodeData & | GetOutNDat (const int &EdgeN) |
const TNodeData & | GetNbrNDat (const int &EdgeN) const |
TNodeData & | GetNbrNDat (const int &EdgeN) |
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... | |
TEdgeDat & | GetInEDat (const int &EdgeN) |
const TEdgeDat & | GetInEDat (const int &EdgeN) const |
TEdgeDat & | GetOutEDat (const int &EdgeN) |
const TEdgeDat & | GetOutEDat (const int &EdgeN) const |
TEdgeDat & | GetNbrEDat (const int &EdgeN) |
const TEdgeDat & | GetNbrEDat (const int &EdgeN) const |
Private Types | |
typedef THash< TInt, TNode >::TIter | THashIter |
Private Attributes | |
THashIter | NodeHI |
TNodeEdgeNet * | Net |
Friends | |
class | TNodeEdgeNet |
Node iterator. Only forward iteration (operator++) is supported.
|
private |
|
inline |
|
inline |
Definition at line 1044 of file network.h.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Definition at line 1103 of file network.h.
|
inline |
Definition at line 1104 of file network.h.
|
inline |
|
inline |
Definition at line 1083 of file network.h.
|
inline |
Definition at line 1084 of file network.h.
|
inline |
Returns ID of EdgeN-th in-node (the node pointing to the current node).
Range of NodeN: 0 <= NodeN < GetInDeg().
Definition at line 1062 of file network.h.
|
inline |
Definition at line 1107 of file network.h.
|
inline |
Definition at line 1108 of file network.h.
|
inline |
|
inline |
Definition at line 1087 of file network.h.
|
inline |
Definition at line 1088 of file network.h.
|
inline |
Returns ID of EdgeN-th neighboring node.
Range of NodeN: 0 <= NodeN < GetNbrDeg().
Definition at line 1070 of file network.h.
|
inline |
|
inline |
Definition at line 1105 of file network.h.
|
inline |
Definition at line 1106 of file network.h.
|
inline |
|
inline |
Definition at line 1085 of file network.h.
|
inline |
Definition at line 1086 of file network.h.
|
inline |
Returns ID of EdgeN-th out-node (the node the current node points to).
Range of NodeN: 0 <= NodeN < GetOutDeg().
Definition at line 1066 of file network.h.
|
inline |
bool TNodeEdgeNet< TNodeData, TEdgeData >::TNodeI::IsInNId | ( | const int & | NId | ) | const |
Tests whether node with ID NId points to the current node.
Definition at line 1325 of file network.h.
|
inline |
|
inline |
Tests whether node with ID NId is a neighbor of the current node.
Definition at line 1077 of file network.h.
|
inline |
bool TNodeEdgeNet< TNodeData, TEdgeData >::TNodeI::IsOutNId | ( | const int & | NId | ) | const |
Tests whether the current node points to node with ID NId.
Definition at line 1335 of file network.h.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
friend |
|
private |
|
private |