SNAP Library 2.1, Developer Reference
2013-09-25 10:47:25
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. | |
bool | operator< (const TNodeI &NodeI) const |
bool | operator== (const TNodeI &NodeI) const |
int | GetId () const |
Returns ID of the current node. | |
bool | IsLeft () const |
Tests whether the node is left hand side node. | |
bool | IsRight () const |
Tests whether the node is right hand side node. | |
int | GetDeg () const |
Returns degree of the current node. | |
int | GetInDeg () const |
Returns in-degree of the current node (returns same as value GetDeg() since the graph is undirected). | |
int | GetOutDeg () const |
Returns out-degree of the current node (returns same as value GetDeg() since the graph is undirected). | |
int | GetInNId (const int &NodeN) const |
Returns ID of NodeN-th in-node (the node pointing to the current node). | |
int | GetOutNId (const int &NodeN) const |
Returns ID of NodeN-th out-node (the node the current node points to). | |
int | GetNbrNId (const int &NodeN) const |
Returns ID of NodeN-th neighboring node. | |
bool | IsInNId (const int &NId) const |
Tests whether node with ID NId points to the current node. | |
bool | IsOutNId (const int &NId) const |
Tests whether the current node points to node with ID NId. | |
bool | IsNbrNId (const int &NId) const |
Tests whether node with ID NId is a neighbor of the current node. | |
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.
typedef THash<TInt, TNode>::TIter TBPGraph::TNodeI::THashIter [private] |
TBPGraph::TNodeI::TNodeI | ( | ) | [inline] |
TBPGraph::TNodeI::TNodeI | ( | const THashIter & | LeftHIter, |
const THashIter & | RightHIter | ||
) | [inline] |
TBPGraph::TNodeI::TNodeI | ( | const TNodeI & | NodeI | ) | [inline] |
int TBPGraph::TNodeI::GetDeg | ( | ) | const [inline] |
int TBPGraph::TNodeI::GetId | ( | ) | const [inline] |
Returns ID of the current node.
Definition at line 873 of file graph.h.
References HI().
Referenced by TBPGraph::AddNode(), TBPGraph::BegEI(), and TBPGraph::TEdgeI::GetSrcNId().
{ return HI().GetDat().GetId(); }
int TBPGraph::TNodeI::GetInDeg | ( | ) | const [inline] |
int TBPGraph::TNodeI::GetInNId | ( | const int & | NodeN | ) | const [inline] |
int TBPGraph::TNodeI::GetNbrNId | ( | const int & | NodeN | ) | const [inline] |
int TBPGraph::TNodeI::GetOutDeg | ( | ) | const [inline] |
Returns out-degree of the current node (returns same as value GetDeg() since the graph is undirected).
Definition at line 883 of file graph.h.
References HI().
Referenced by TBPGraph::BegEI(), and TBPGraph::TEdgeI::operator++().
{ return HI().GetDat().GetOutDeg(); }
int TBPGraph::TNodeI::GetOutNId | ( | const int & | NodeN | ) | const [inline] |
Returns ID of NodeN-th out-node (the node the current node points to).
Definition at line 889 of file graph.h.
References HI().
Referenced by TBPGraph::BegEI(), and TBPGraph::TEdgeI::GetDstNId().
{ return HI().GetDat().GetOutNId(NodeN); }
THashIter TBPGraph::TNodeI::HI | ( | ) | const [inline, private] |
Definition at line 857 of file graph.h.
References LeftHI, and RightHI.
Referenced by GetDeg(), GetId(), GetInDeg(), GetInNId(), GetNbrNId(), GetOutDeg(), GetOutNId(), IsInNId(), IsNbrNId(), and IsOutNId().
bool TBPGraph::TNodeI::IsInNId | ( | const int & | NId | ) | const [inline] |
bool TBPGraph::TNodeI::IsLeft | ( | ) | const [inline] |
bool TBPGraph::TNodeI::IsNbrNId | ( | const int & | NId | ) | const [inline] |
bool TBPGraph::TNodeI::IsOutNId | ( | const int & | NId | ) | const [inline] |
bool TBPGraph::TNodeI::IsRight | ( | ) | const [inline] |
TNodeI& TBPGraph::TNodeI::operator++ | ( | int | ) | [inline] |
bool TBPGraph::TNodeI::operator< | ( | const TNodeI & | NodeI | ) | const [inline] |
bool TBPGraph::TNodeI::operator== | ( | const TNodeI & | NodeI | ) | const [inline] |
THashIter TBPGraph::TNodeI::LeftHI [private] |
Definition at line 855 of file graph.h.
Referenced by TBPGraph::GetEI(), HI(), IsLeft(), operator++(), operator<(), operator=(), and operator==().
THashIter TBPGraph::TNodeI::RightHI [private] |
Definition at line 855 of file graph.h.
Referenced by HI(), operator++(), operator<(), operator=(), and operator==().