All Maximal Non-Branching Paths in a Graph (All Maximal Non-Branching Paths in a Graph)

From Algorithm Wiki
Revision as of 11:25, 15 February 2023 by Admin (talk | contribs) (Created page with "{{DISPLAYTITLE:All Maximal Non-Branching Paths in a Graph (All Maximal Non-Branching Paths in a Graph)}} == Description == A node $v$ in a directed graph $G$ is called a 1-in-1-out node if its indegree and outdegree are both equal to 1, i.e., $in(v) = out(v) = 1$. We can rephrase the definition of a "maximal non-branching path" from the main text as a path whose internal nodes are 1-in-1-out nodes and whose initial and final nodes are not 1-in-1-out nodes. The proble...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

A node $v$ in a directed graph $G$ is called a 1-in-1-out node if its indegree and outdegree are both equal to 1, i.e., $in(v) = out(v) = 1$. We can rephrase the definition of a "maximal non-branching path" from the main text as a path whose internal nodes are 1-in-1-out nodes and whose initial and final nodes are not 1-in-1-out nodes.

The problem is to find all maximal non-branching paths in a given graph.

Parameters

n: number of vertices
m: number of edges

Table of Algorithms

Name Year Time Space Approximation Factor Model Reference
Naive 1940 $O(m)$ $O(n)$ auxiliary? Exact Deterministic Time

Time Complexity graph

All Maximal Non-Branching Paths in a Graph - Time.png

Space Complexity graph

All Maximal Non-Branching Paths in a Graph - Space.png

Pareto Decades graph

All Maximal Non-Branching Paths in a Graph - Pareto Frontier.png