我正在尝试将EdgeList
转换为Adjacency List
,然后通过preorder traverse
进行转换。我很确定向Adjacency List
的转换可以正常进行,但是我无法通过preorder traversing
进行转换。我曾尝试用DFS
来做到这一点,但这给了我错误的结果。
这是我的优势:
{index1=0, index2=2}
{index1=3, index2=4}
{index1=1, index2=4}
{index1=0, index2=5}
{index1=2, index2=6}
{index1=1, index2=5}
{index1=2, index2=7}
这就是链接列表的样子。
0 - 2 - 5
1 - 4 - 5
2 - 6 - 7
3 - 4
或
linked[2, 5]
linked[4, 5]
linked[6, 7]
linked[4]
现在,我想对图表进行遍历,以得到结果0 - 2 - 6 - 7 - 5 - 1 - 4 - 3
。
0
2 5
6 7 1
4
3
我尝试在DFS
中使用AdjacencyListGraph
,但这是我通过以下代码得到0 2 6 7 5
的结果:
public class AdjacencyListGraph {
private int V; // No. of vertices
// Array of lists for Adjacency List Representation
private LinkedList<Integer> adj[];
// Constructor
AdjacencyListGraph(int v) {
V = v;
adj = new LinkedList[v];
for (int i=0; i<v; ++i)
adj[i] = new LinkedList();
}
//Function to add an edge into the graph
void addEdge(int v, int w) {
adj[v].add(w); // Add w to v's list.
}
// A function used by DFS
void DFSUtil(int v,boolean visited[])
{
// Mark the current node as visited and print it
visited[v] = true;
System.out.print(v+" ");
// Recur for all the vertices adjacent to this vertex
Iterator<Integer> i = adj[v].listIterator();
// System.out.println(i.toString());
while (i.hasNext())
{
int n = i.next();
if (!visited[n])
DFSUtil(n,visited);
}
}
// The function to do DFS traversal. It uses recursive DFSUtil()
void DFS(int v)
{
// Mark all the vertices as not visited(set as
// false by default in java)
boolean visited[] = new boolean[V];
// Call the recursive helper function to print DFS traversal
// starting from all vertices one by one
DFSUtil(v, visited);
}
public static void main(String[] args) {
AdjacencyListGraph graph = new AdjacencyListGraph(8);
graph.addEdge(0, 2);
graph.addEdge(0, 5);
graph.addEdge(1, 4);
graph.addEdge(1, 5);
graph.addEdge(2, 6);
graph.addEdge(2, 7);
graph.addEdge(3, 4);
graph.DFS(0);
}
}
我也尝试使用:
void DFS()
{
// Mark all the vertices as not visited(set as
// false by default in java)
boolean visited[] = new boolean[V];
// Call the recursive helper function to print DFS traversal
// starting from all vertices one by one
for (int i=0; i<V; ++i)
if (visited[i] == false)
DFSUtil(i, visited);
}
代替上面提到的那个,它遍历了所有nodes
,但是它以错误的顺序返回了结果。
我在做错什么,应该如何或怎样使用才能获得理想的结果?
答案 0 :(得分:1)
尝试使用此图:
graph.addEdge(0, 2);
graph.addEdge(0, 5);
graph.addEdge(1, 4);
graph.addEdge(5, 1); // different direction than original
graph.addEdge(2, 6);
graph.addEdge(2, 7);
graph.addEdge(4, 3); // different direction than original
或者,在程序中的addEdge
方法中进行一些修改:
//Function to add an edge into the graph
void addEdge(int v, int w) {
adj[v].add(w); // Add w to v's list.
adj[w].add(v); // Add v to w's list.
}