|
SNAP Library 4.1, Developer Reference
2018-07-26 16:30:42
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
|
Node iterator. Only forward iteration (operator++) is supported. More...
#include <graph.h>

Public Member Functions | |
| TNodeI () | |
| TNodeI (const THashIter &LeftHIter, const THashIter &RightHIter) | |
| 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... | |
| bool | IsLeft () const |
| Tests whether the node is left hand side node. More... | |
| bool | IsRight () const |
| Tests whether the node is right hand side node. More... | |
| int | GetDeg () const |
| Returns degree of the current node. More... | |
| int | GetInDeg () const |
| Returns in-degree of the current node (returns same as value GetDeg() since the graph is undirected). More... | |
| int | GetOutDeg () const |
| Returns out-degree of the current node (returns same as value GetDeg() since the graph is undirected). 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 Member Functions | |
| THashIter | HI () const |
Private Attributes | |
| THashIter | LeftHI |
| THashIter | RightHI |
Friends | |
| class | TBPGraph |
Node iterator. Only forward iteration (operator++) is supported.
|
private |
|
inline |
|
inline |
Returns ID of the current node.
Definition at line 981 of file graph.h.
References HI().
Referenced by TBPGraph::AddNode(), TBPGraph::BegEI(), and TBPGraph::TEdgeI::GetSrcNId().


|
inline |
|
inline |
|
inline |
|
inline |
Returns out-degree of the current node (returns same as value GetDeg() since the graph is undirected).
Definition at line 991 of file graph.h.
References HI().
Referenced by TBPGraph::BegEI(), and TBPGraph::TEdgeI::operator++().


|
inline |
Returns ID of NodeN-th out-node (the node the current node points to).
Definition at line 997 of file graph.h.
References HI().
Referenced by TBPGraph::BegEI(), and TBPGraph::TEdgeI::GetDstNId().


|
inlineprivate |
Definition at line 965 of file graph.h.
References LeftHI, and RightHI.
Referenced by GetDeg(), GetId(), GetInDeg(), GetInNId(), GetNbrNId(), GetOutDeg(), GetOutNId(), IsInNId(), IsNbrNId(), and IsOutNId().

|
inline |
|
inline |
Tests whether the node is left hand side node.
Definition at line 983 of file graph.h.
References LeftHI.
Referenced by TBPGraph::AddNode(), and IsRight().

|
inline |
|
inline |
|
inline |
Tests whether the node is right hand side node.
Definition at line 985 of file graph.h.
References IsLeft().

|
inline |
|
inline |
|
inline |
|
private |
Definition at line 963 of file graph.h.
Referenced by TBPGraph::GetEI(), HI(), IsLeft(), operator++(), operator<(), operator=(), and operator==().
|
private |
Definition at line 963 of file graph.h.
Referenced by HI(), operator++(), operator<(), operator=(), and operator==().