Блог пользователя Baba

Автор Baba, 9 лет назад, По-английски

http://threads-iiith.quora.com/The-Bridge-Tree-of-a-graph

Any feedback/suggestions are most welcome. :)

  • Проголосовать: нравится
  • +24
  • Проголосовать: не нравится

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

What is the time complexity of the bridge tree building process?

»
3 года назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

I'm so confused. How does it differs from Block-cut tree ? Thanks in advance

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится +1 Проголосовать: не нравится

    In a bridge tree, every vertex corresponds to a 2-connected component, and edges correspond to bridges. If edge $$$(a, b)$$$ is on the path $$$u, v$$$ in the bridge tree, then the edge $$$(a, b)$$$ is a bridge that separates $$$u$$$ and $$$v$$$ in the original graph.

    Block-cut trees are kind of similar, with cut vertices instead of bridges. It has the property that if vertex $$$x$$$ is on the path $$$u, v$$$ in the block-cut tree, then it is a cut vertex that separates $$$u$$$ and $$$v$$$ in the original graph.