Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Graph Data Structure Question: PROBLEM 5 (10 points): A Directed-Acyclic Graph (DAG) is exactly what the name suggests: a directed graph with no cycles. Vocab
Graph Data Structure Question:
PROBLEM 5 (10 points): A Directed-Acyclic Graph (DAG) is exactly what the name suggests: a directed graph with no cycles. Vocab -Indegree/Outdegree: For a directed graph G (V, E), let outdegree (u) represent the out-degree of vertex u E V-Le, the number edges for which u is the source vertex (number of "outgoing arrows"). Similarly, let indegree (u) represent the in-degree of vertex uEV e., the number of edges for which u is the destination vertex (number of "incoming arrows") The following statements are true: "In any DAG (technically, with at least one vertex), there is at least one vertex u such that outdegree (u)-o" (sometimes we refer to such vertices as 'outputs" or "sinks" of the DAG). "In any DAG (technically, with at least one vertex), there is at least one vertex u such that indegree (u)-o" (sometimes we refer to such vertices as "inputs" or '"sources" of the DAG). Equivalently, "If a non-empty directed graph G is a DAG, then it has at least one sink vertex and at least one source vertex." So far so good. But how about the converse "If a given non-empty directed graph has at least one sink vertex and at least one source vertex, then it must be a DAG This turns out to be false! Your Job: Construct a counter-example (i.e., a directed-graph) demonstrating that this statement is falseStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started