比如这样:
/* the struct of the node by adjacency-list representation */
typedef struct
{
/* the name of node */
string nodename;
/* the list of each node */
vector< string > nodelist;
/* the begin probability of the node */
vector< float > nodeprob;
} nbnode;