SNAP Library 2.2, User Reference
2014-03-11 19:15:55
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
|
Public Member Functions | |
TSVec (int capacity) | |
bool | Contains (int nodeId) const |
void | Push (int nodeId) |
void | Pop () |
int | Capacity () const |
int | Size () const |
const TIntV & | getVec () const |
int | operator[] (int i) const |
Protected Attributes | |
int | m_capacity |
int | m_size |
int * | m_arr |
TIntV | m_v |
Definition at line 38 of file subgraphenum.h.
TSubGraphEnum< TGraphCounter >::TSVec::TSVec | ( | int | capacity | ) | [inline] |
Definition at line 45 of file subgraphenum.h.
int TSubGraphEnum< TGraphCounter >::TSVec::Capacity | ( | ) | const [inline] |
Definition at line 55 of file subgraphenum.h.
{ return m_capacity; }
bool TSubGraphEnum< TGraphCounter >::TSVec::Contains | ( | int | nodeId | ) | const [inline] |
Definition at line 50 of file subgraphenum.h.
const TIntV& TSubGraphEnum< TGraphCounter >::TSVec::getVec | ( | ) | const [inline] |
Definition at line 57 of file subgraphenum.h.
{ return m_v; }
int TSubGraphEnum< TGraphCounter >::TSVec::operator[] | ( | int | i | ) | const [inline] |
Definition at line 58 of file subgraphenum.h.
{ return m_arr[i]; }
void TSubGraphEnum< TGraphCounter >::TSVec::Pop | ( | ) | [inline] |
Definition at line 54 of file subgraphenum.h.
void TSubGraphEnum< TGraphCounter >::TSVec::Push | ( | int | nodeId | ) | [inline] |
Definition at line 53 of file subgraphenum.h.
int TSubGraphEnum< TGraphCounter >::TSVec::Size | ( | ) | const [inline] |
Definition at line 56 of file subgraphenum.h.
{ return m_size; }
int* TSubGraphEnum< TGraphCounter >::TSVec::m_arr [protected] |
Definition at line 42 of file subgraphenum.h.
int TSubGraphEnum< TGraphCounter >::TSVec::m_capacity [protected] |
Definition at line 40 of file subgraphenum.h.
int TSubGraphEnum< TGraphCounter >::TSVec::m_size [protected] |
Definition at line 41 of file subgraphenum.h.
TIntV TSubGraphEnum< TGraphCounter >::TSVec::m_v [protected] |
Definition at line 43 of file subgraphenum.h.