图的深度遍历(DFS)

Posted lynnmin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图的深度遍历(DFS)相关的知识,希望对你有一定的参考价值。

使用邻接矩阵进行存储;
技术分享图片

package graph;

import java.util.ArrayList;

public class DFSTraverse {
    private static ArrayList<Integer> list = new ArrayList<Integer>();

    // 邻接矩阵存储;
    public static void main(String[] args) {
        // 初始数据;
        int[] vertexs = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
        int[][] edges = { { 0, 1, 0, 0, 0, 1, 0, 0, 0 }, { 1, 0, 1, 0, 0, 0, 1, 0, 1 }, { 0, 1, 0, 1, 0, 0, 0, 0, 1 },
                { 0, 0, 1, 0, 1, 0, 1, 1, 1 }, { 0, 0, 0, 1, 0, 1, 0, 1, 0 }, { 1, 0, 0, 0, 1, 0, 1, 0, 0 },
                { 0, 1, 0, 1, 0, 1, 0, 1, 0 }, { 0, 0, 0, 1, 1, 0, 1, 0, 0 }, { 0, 1, 1, 1, 0, 0, 0, 0, 0 } };
        DFSTraverse(vertexs, edges);
        System.out.println("深度遍历结果:" + list);

    }

    private static void DFSTraverse(int[] vertexs, int[][] edges) {
        boolean[] visited = new boolean[vertexs.length]; // 顶点是否被访问;
        for (int i = 0; i < visited.length; i++) {
            visited[i] = false;
        }
        
        for (int i = 0; i < vertexs.length; i++) {
            if (!visited[i]) { // 没有被访问;
                DFS(edges, visited, i, vertexs);
            }
        }
    }

    private static void DFS(int[][] edges, boolean[] visited, int i, int[] vertexs) {
        visited[i] = true;
    //  System.out.println(vertexs[i]);
        list.add(vertexs[i]);
        for (int j = 0; j < vertexs.length; j++) {
            if (edges[i][j] == 1 && !visited[i]) {
                DFS(edges, visited, j, vertexs);
            }
        }
    }
}

运行结果
技术分享图片
图的深度优先遍历类似于二叉树的前序遍历。




以上是关于图的深度遍历(DFS)的主要内容,如果未能解决你的问题,请参考以下文章

Day10 图的深度优先遍历

算法|图的遍历-深度优先搜索(DFS)

(王道408考研数据结构)第六章图-第三节:图的遍历(DFS和BFS)

图的深度优先遍历DFS(C语言)

图的遍历DFS

图的深度遍历(DFS)