码迷,mamicode.com
首页 > 其他好文 > 详细

图的深度遍历(DFS)

时间:2018-08-14 14:24:48      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:port   inf   fst   oid   访问   pack   class   ++   img   

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

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)

标签:port   inf   fst   oid   访问   pack   class   ++   img   

原文地址:https://www.cnblogs.com/LynnMin/p/9473778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!