我对为什么编写的DFS算法没有访问图形中的最终顶点感到困惑。这是代码:
图形/顶点类
import java.util.ArrayList;
import java.util.Deque;
import java.util.HashMap;
import java.util.LinkedList;
public class Graph {
private HashMap<Vertex, ArrayList<Vertex>> adjacencyList;
public Graph() {
this.adjacencyList = new HashMap<>();
}
public void addVertex(Vertex vertex) {
if (!adjacencyList.containsKey(vertex)) {
adjacencyList.put(vertex, new ArrayList<>());
}
}
public void addEdge(Vertex vertex1, Vertex vertex2) {
this.adjacencyList.get(vertex1).add(vertex2);
this.adjacencyList.get(vertex2).add(vertex1);
}
public HashMap<Vertex, ArrayList<Vertex>> getAdjacencyList() {
return adjacencyList;
}
public void printAdjacencyList(Vertex vertex) {
System.out.print(vertex.getValue() + ": ");
for (Vertex v : adjacencyList.get(vertex)) {
System.out.print(v.getValue());
}
System.out.println();
}
public ArrayList<Vertex> DFS_Recursive(Vertex start) {
ArrayList<Vertex> result = new ArrayList<>();
HashMap<Vertex, Boolean> visited = new HashMap<>();
for (Vertex v : adjacencyList.keySet()) {
visited.put(v, false);
}
return DFS_Recursive_Utility(start, result, visited);
}
private ArrayList<Vertex> DFS_Recursive_Utility(Vertex vertex, ArrayList<Vertex> results, HashMap<Vertex, Boolean> visited) {
if (vertex == null) {
return null;
}
visited.put(vertex, true);
results.add(vertex);
for (Vertex v : adjacencyList.get(vertex)) {
if (!visited.get(v)) {
return DFS_Recursive_Utility(v, results, visited);
}
}
return results;
}
}
class Vertex<E> {
private E value;
public Vertex(E value) {
this.value = value;
}
public E getValue() {
return value;
}
}
主类
public static void main(String[] args) {
Vertex<String> a = new Vertex<>("A");
Vertex<String> b = new Vertex<>("B");
Vertex<String> c = new Vertex<>("C");
Vertex<String> d = new Vertex<>("D");
Vertex<String> e = new Vertex<>("E");
Vertex<String> f = new Vertex<>("F");
Graph graph = new Graph();
graph.addVertex(a);
graph.addVertex(b);
graph.addVertex(c);
graph.addVertex(d);
graph.addVertex(e);
graph.addVertex(f);
graph.addEdge(a, b);
graph.addEdge(a, c);
graph.addEdge(b, d);
graph.addEdge(c, e);
graph.addEdge(d, e);
graph.addEdge(d, f);
graph.addEdge(e, f);
System.out.println();
for (Vertex v : graph.getAdjacencyList().keySet()) {
graph.printAdjacencyList(v);
}
System.out.println();
for (Vertex v : graph.DFS_Recursive(a)) {
System.out.print(v.getValue() + " ");
}
}
调用DFS_Recursive()的结果是:
A B D E C
我已经使用了IntelliJ调试器,当算法到达顶点C时,堆栈上仍然有剩余的调用,以检查E的邻接表中是否还有未访问的顶点。但是,此时它只返回结果ArrayList,其余的递归调用将被忽略。
有关发生的事情以及如何解决的任何想法?
答案 0 :(得分:2)
据我所知,您的实现返回得太早,以致无法正确填充填充的顶点列表。更改实现,如下所示。
public ArrayList<Vertex> DFS_Recursive(Vertex start) {
ArrayList<Vertex> result = new ArrayList<>();
HashMap<Vertex, Boolean> visited = new HashMap<>();
for (Vertex v : adjacencyList.keySet()) {
visited.put(v, false);
}
DFS_Recursive_Utility(start, result, visited);
return result;
}
private void DFS_Recursive_Utility(Vertex vertex,
ArrayList<Vertex> results,
HashMap<Vertex, Boolean> visited) {
if (vertex == null) {
return;
}
visited.put(vertex, true);
results.add(vertex);
for (Vertex v : adjacencyList.get(vertex)) {
if (!visited.get(v)) {
DFS_Recursive_Utility(v, results, visited);
}
}
}