SNAP Library 2.1, User 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 <network.h>
Public Member Functions | |
TNodeI () | |
TNodeI (const THashIter &NodeHIter, const TNEANet *GraphPt) | |
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. | |
int | GetDeg () const |
Returns degree of the current node, the sum of in-degree and out-degree. | |
int | GetInDeg () const |
Returns in-degree of the current node. | |
int | GetOutDeg () const |
Returns out-degree of the current node. | |
int | GetInNId (const int &EdgeN) const |
Returns ID of EdgeN-th in-node (the node pointing to the current node). | |
int | GetOutNId (const int &EdgeN) const |
Returns ID of EdgeN-th out-node (the node the current node points to). | |
int | GetNbrNId (const int &EdgeN) const |
Returns ID of EdgeN-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. | |
int | GetInEId (const int &EdgeN) const |
Returns ID of EdgeN-th in-edge. | |
int | GetOutEId (const int &EdgeN) const |
Returns ID of EdgeN-th out-edge. | |
int | GetNbrEId (const int &EdgeN) const |
Returns ID of EdgeN-th in or out-edge. | |
bool | IsInEId (const int &EId) const |
Tests whether the edge with ID EId is an in-edge of current node. | |
bool | IsOutEId (const int &EId) const |
Tests whether the edge with ID EId is an out-edge of current node. | |
bool | IsNbrEId (const int &EId) const |
Tests whether the edge with ID EId is an in or out-edge of current node. | |
void | GetAttrNames (TStrV &Names) const |
Gets vector of attribute names. | |
void | GetAttrVal (TStrV &Val) const |
Gets vector of attribute values. | |
void | GetIntAttrNames (TStrV &Names) const |
Gets vector of int attribute names. | |
void | GetIntAttrVal (TIntV &Val) const |
Gets vector of int attribute values. | |
void | GetStrAttrNames (TStrV &Names) const |
Gets vector of str attribute names. | |
void | GetStrAttrVal (TStrV &Val) const |
Gets vector of str attribute values. | |
void | GetFltAttrNames (TStrV &Names) const |
Gets vector of flt attribute names. | |
void | GetFltAttrVal (TFltV &Val) const |
Gets vector of flt attribute values. | |
Private Types | |
typedef THash< TInt, TNode >::TIter | THashIter |
Private Attributes | |
THashIter | NodeHI |
const TNEANet * | Graph |
Friends | |
class | TNEANet |
Node iterator. Only forward iteration (operator++) is supported.
typedef THash<TInt, TNode>::TIter TNEANet::TNodeI::THashIter [private] |
TNEANet::TNodeI::TNodeI | ( | ) | [inline] |
TNEANet::TNodeI::TNodeI | ( | const THashIter & | NodeHIter, |
const TNEANet * | GraphPt | ||
) | [inline] |
TNEANet::TNodeI::TNodeI | ( | const TNodeI & | NodeI | ) | [inline] |
void TNEANet::TNodeI::GetAttrNames | ( | TStrV & | Names | ) | const [inline] |
Gets vector of attribute names.
Definition at line 1669 of file network.h.
{ Graph->AttrNameNI(GetId(), Names); }
void TNEANet::TNodeI::GetAttrVal | ( | TStrV & | Val | ) | const [inline] |
Gets vector of attribute values.
Definition at line 1671 of file network.h.
{ Graph->AttrValueNI(GetId(), Val); }
int TNEANet::TNodeI::GetDeg | ( | ) | const [inline] |
void TNEANet::TNodeI::GetFltAttrNames | ( | TStrV & | Names | ) | const [inline] |
Gets vector of flt attribute names.
Definition at line 1681 of file network.h.
{ Graph->FltAttrNameNI(GetId(), Names); }
void TNEANet::TNodeI::GetFltAttrVal | ( | TFltV & | Val | ) | const [inline] |
Gets vector of flt attribute values.
Definition at line 1683 of file network.h.
{ Graph->FltAttrValueNI(GetId(), Val); }
int TNEANet::TNodeI::GetId | ( | ) | const [inline] |
int TNEANet::TNodeI::GetInDeg | ( | ) | const [inline] |
int TNEANet::TNodeI::GetInEId | ( | const int & | EdgeN | ) | const [inline] |
int TNEANet::TNodeI::GetInNId | ( | const int & | EdgeN | ) | const [inline] |
void TNEANet::TNodeI::GetIntAttrNames | ( | TStrV & | Names | ) | const [inline] |
Gets vector of int attribute names.
Definition at line 1673 of file network.h.
{ Graph->IntAttrNameNI(GetId(), Names); }
void TNEANet::TNodeI::GetIntAttrVal | ( | TIntV & | Val | ) | const [inline] |
Gets vector of int attribute values.
Definition at line 1675 of file network.h.
{ Graph->IntAttrValueNI(GetId(), Val); }
int TNEANet::TNodeI::GetNbrEId | ( | const int & | EdgeN | ) | const [inline] |
int TNEANet::TNodeI::GetNbrNId | ( | const int & | EdgeN | ) | const [inline] |
int TNEANet::TNodeI::GetOutDeg | ( | ) | const [inline] |
int TNEANet::TNodeI::GetOutEId | ( | const int & | EdgeN | ) | const [inline] |
int TNEANet::TNodeI::GetOutNId | ( | const int & | EdgeN | ) | const [inline] |
void TNEANet::TNodeI::GetStrAttrNames | ( | TStrV & | Names | ) | const [inline] |
Gets vector of str attribute names.
Definition at line 1677 of file network.h.
{ Graph->StrAttrNameNI(GetId(), Names); }
void TNEANet::TNodeI::GetStrAttrVal | ( | TStrV & | Val | ) | const [inline] |
Gets vector of str attribute values.
Definition at line 1679 of file network.h.
{ Graph->StrAttrValueNI(GetId(), Val); }
bool TNEANet::TNodeI::IsInEId | ( | const int & | EId | ) | const [inline] |
bool TNEANet::TNodeI::IsInNId | ( | const int & | NId | ) | const |
Tests whether node with ID NId points to the current node.
Definition at line 7 of file network.cpp.
bool TNEANet::TNodeI::IsNbrEId | ( | const int & | EId | ) | const [inline] |
bool TNEANet::TNodeI::IsNbrNId | ( | const int & | NId | ) | const [inline] |
bool TNEANet::TNodeI::IsOutEId | ( | const int & | EId | ) | const [inline] |
bool TNEANet::TNodeI::IsOutNId | ( | const int & | NId | ) | const |
Tests whether the current node points to node with ID NId.
Definition at line 16 of file network.cpp.
TNodeI& TNEANet::TNodeI::operator++ | ( | int | ) | [inline] |
bool TNEANet::TNodeI::operator< | ( | const TNodeI & | NodeI | ) | const [inline] |
bool TNEANet::TNodeI::operator== | ( | const TNodeI & | NodeI | ) | const [inline] |
const TNEANet* TNEANet::TNodeI::Graph [private] |
THashIter TNEANet::TNodeI::NodeHI [private] |