比如这样:

/* 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;

相关文章:

  • 2022-12-23
  • 2021-11-15
  • 2021-12-28
  • 2021-10-03
  • 2022-12-23
  • 2021-09-25
  • 2023-03-21
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案