Imagine a graph where u and v are vertices, and there is no path for which u and v are extremities. If we run a DFS from u, which of the following propositions are true?
Imagine we run a DFS (respectively a BFS) from any vertex u of a complete graph of order n. How many vertices are neighbors of u in the resulting tree?
Imagine a graph with vertices V = {v1, v2, v3, v4}, in which {v1, v2}, {v1, v3}, and {v1, v4} are edges. Which of the following are correct?
Imagine a graph with vertices V = {v1, v2, v3, v4, v5}. A graph traversal algorithm from v1 has produced the following routing table (second row): [undefined, v3, v1, v2, v1]. What is the corresponding path between v1 and v4?