有向图中,打印出所有的回路(Java

有向图中,打印出所有的回路(Java)


具体思路:利用DFS算法深度遍历图中的每一个节点。在遍历的同时设置一个list,用来存放已经遍历过的点;如果再遍历到这个点(说明形成了回路)的时候就打印出来。

注意点:

  1. 需要记录每一个点“是否被访问过”的状态。
  2. 由于是有向图,所以实际上并不能保证从一个特定的点出发能够遍历到图中所有的点,因此需要从图中每一个点出发将图遍历一遍。
  3. 在遍历不同的节点的时候需要注意将图中点的状态全部恢复

下面是具体代码

最后两个函数sortStringbubbleArray两个函数是没有必要的,是为了让输出更加的美观添加的函数。

import java.io.*;
import java.util.*;
public class Main {
    /*要求:判断一个有向图中是否有回路,并且打印出所有的回路。
    思路:通过修改的DFS算法遍历有向图。
    在遍历的过程中,把遍历到的所有的元素都存储到一个队列里面,然后每次遍历到一个节点的时候就检查一下这个队列;要是队列里面已经有重复的元素
    那就表明已经形成了回路,然后打印出来这个回路;然后中断遍历,回去遍历别的节点。
    */

    private String filename = "";
    //用邻接表来初始化要检查的有向图
    private Map<String,ArrayList<String>> Graph = new HashMap<String, ArrayList<String>>();

    ArrayList POINTS = new ArrayList();

    public void initGraph() throws IOException {

        File file = new File(filename);
        FileInputStream fileInputStream = new FileInputStream(file);
        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(fileInputStream));
        String line = null;
        while ((line = bufferedReader.readLine()) != null){
            String[] temp = line.split(",");
            if (!POINTS.contains(temp[0])){
                POINTS.add(temp[0]);
            }
            if (!POINTS.contains(temp[1])){
                POINTS.add(temp[1]);
            }
            if (this.Graph.containsKey(temp[0])){
                ArrayList<String> A = Graph.get(temp[0]);
                A.add(temp[1]);
                this.Graph.put(temp[0],A);
            }
            else {
                ArrayList<String> newList = new ArrayList<String>();
                newList.add(temp[1]);
                this.Graph.put(temp[0],newList);
            }
        }
        bufferedReader.close();



    }


    //建造一个HashMap来记录每一个点的状态(是否被访问过)
    private HashMap<String,Boolean> NodeState = new HashMap<String, Boolean>();



    //用来存放已经被遍历过的点
    private ArrayList<String> nodeList = new ArrayList<String>();


    //设置以用来存放最后的结果
    ArrayList<ArrayList<String>> result = new ArrayList<ArrayList<String>>();

    public void SearchingStart(String firstNode){
        nodeList.add(firstNode);
        NodeState.put(firstNode,true);
        List<String> tempList = Graph.get(firstNode);
        //遍历x的邻接节点
        if (tempList == null){
            return;
        }
        for (String x : tempList){

/*

            for (String mmm : nodeList){
                System.out.print(mmm);
            }

            System.out.println();
            System.out.println("现在正在访问的是"+x);

*/

            //检测这个点是否已经在list中,如果已经在list中说明x与x之后遍历的所有元素形成了一个回路,打印出来
            if (nodeList.contains(x)){
                List<String> loopList = nodeList.subList(nodeList.indexOf(x),nodeList.size());
                ArrayList<String> toBeAddedInToReault = new ArrayList<String>();
                for (String points:loopList){
                    toBeAddedInToReault.add(points);
                    continue;
                }

                //检查要被加进去的回路是否已经存在
                if (!HasHave(result,toBeAddedInToReault)) {
                    result.add(toBeAddedInToReault);
                }

            }

            else {

                //如果这个节点没有邻接点了
                if (Graph.get(x) == null) {
                    NodeState.put(x,true);
                    continue;
                }



                //如果这个节点指向的所有邻接点都已经被访问过了
                boolean allVisited = true;
                for (String neighborPoints : Graph.get(x)){
                    if (!NodeState.containsKey(neighborPoints)){
                        allVisited = false;
                        break;
                    }
                    if (NodeState.get(neighborPoints) == true){
                        continue;
                    }
                    else {
                        allVisited = false;
                        break;
                    }
                }
                //描述"所有的邻接点都被访问过,但是其中有能够构成回路的邻接点"
                boolean b1 = false;
                for (String neighborPoints : Graph.get(x)) {
                    if (nodeList.contains(neighborPoints)) {
                        b1 = true;
                    }
                }
                if (allVisited && b1){
                    allVisited = false;
                }
                //描述"所有的邻接点都被访问过,而且这些邻接点都不能构成回路"
                if (allVisited){
                    continue;
                }


                //如果这个节点有没有被访问过的邻接点
                else {
                    SearchingStart(x);
                }

            }

        }
        nodeList.remove(nodeList.size() - 1);
    }


    public static void main(String[] args) {
        Main a = new Main();
        try {
            a.initGraph();
        } catch (IOException e) {
            e.printStackTrace();
        }

        ArrayList<String> nodes = a.POINTS;
        for (int i = 0 ; i < nodes.size() ; i ++){
            String temp = nodes.get(i);
            a.SearchingStart(temp);
            a.nodeList.clear();
            a.NodeState.clear();
        }

        ArrayList R = a.result;
        if (R.isEmpty()){
            System.out.println(0);
        }
        else {
            System.out.println(1);
            System.out.println(R.size());


            R = bubbleArray(R);

            for (int i = 0 ; i <= R.size() - 1 ; i ++){
                ArrayList A = (ArrayList) R.get(i);
                A = sortString(A);
                for (int j = 1 ; j <= A.size() - 1 ; j ++){
                    System.out.print(A.get(j - 1)+" ");
                }
                System.out.println(A.get(A.size() - 1));
            }

        }
    }

    public static ArrayList sortString(ArrayList<String> R){
        int minIndex = 0 ;
        for (int i = 1 ; i <= R.size() - 1 ; i ++){
            if (Integer.valueOf(R.get(i))<Integer.valueOf(R.get(minIndex))){
                minIndex = i;
            }
        }
        ArrayList result = new ArrayList();
        for (int j = minIndex ; j <= R.size() - 1 ; j ++ ){
            result.add(R.get(j));
        }
        for (int k = 0 ; k < minIndex ; k ++){
            result.add(R.get(k));
        }
        return result;
    }

    public static ArrayList bubbleArray(ArrayList<ArrayList> R){
        for (int i = 0 ; i < R.size()-1 ; i ++){
            for (int j = 0 ; j < R.size() - 1 - i ; j ++ ){
                if (R.get(j + 1).size() < R.get(j).size()){
                    ArrayList temp1 = R.get(j);
                    ArrayList temp2 = R.get(j+1);
                    R.remove(j);
                    R.add(j,temp2);
                    R.remove(j+1);
                    R.add(j+1,temp1);
                }
            }
        }
        return R;
    }

    public boolean HasHave(ArrayList<ArrayList<String>> A , ArrayList<String> a){
        for (int i = 0 ; i < A.size() ; i ++){
            if (A.get(i).size() == a.size()){
                int j = 0;
                while (j < A.get(i).size()){
                    String k = A.get(i).get(j);
                    j++;
                    if (!a.contains(k)){
                        return false;
                    }
                    else continue;
                }
                return true;
            }
        }
        return false;
    }

}

发布了3 篇原创文章 · 获赞 0 · 访问量 831

猜你喜欢

转载自blog.csdn.net/APPTITE/article/details/85081076