search

Home  >  Q&A  >  body text

c++ - 怎么找出一个图的最大联通子图?

我有一个图,结构是:

struct graph{
vector<edge> edges;
vector<vertex> vertex;
}

大概就是这样的一个结构吧,就是分别用向量存了边和点,点的数据结构里面有存储和它相连的所有的边的信息。
要找出最大联通子图应该怎么找啊?

伊谢尔伦伊谢尔伦2803 days ago452

reply all(1)I'll reply

  • 伊谢尔伦

    伊谢尔伦2017-04-17 13:03:20

    • Traverse all points

    • For each point, if it has not been visited, do BFS, mark the points passed on the way as visited, and record the number of points n

    • Find max(n)

    reply
    0
  • Cancelreply