(番外)使用DFS和BFS实现拓扑排序

1.BFS实现

 

public class Solution {

    public int[] findOrder(int numCourses, int[][] prerequisites) {

        int[] incLinkCounts = new int[numCourses];

        List<List<Integer>> adjs = new ArrayList<>(numCourses);

        initialiseGraph(incLinkCounts, adjs, prerequisites);

    //return solveByBFS(incLinkCounts, adjs);

        return solveByBFS(incLinkCounts,adjs);

    }

     

    private void initialiseGraph(int[] incLinkCounts, List<List<Integer>> adjs, int[][] prerequisites){

        int n = incLinkCounts.length;

        while (n-- > 0) adjs.add(new ArrayList<>());

        for (int[] edge : prerequisites) {

            incLinkCounts[edge[0]]++;

            adjs.get(edge[1]).add(edge[0]);

        }

   }

    

   private int[] solveByBFS(int[] incLinkCounts, List<List<Integer>> adjs){

       int[] order = new int[incLinkCounts.length];

       Queue<Integer> toVisit = new ArrayDeque<>();

       for (int i = 0; i < incLinkCounts.length; i++) {

           if (incLinkCounts[i] == 0) toVisit.offer(i);

            }

       int visited = 0;

       while (!toVisit.isEmpty()) {

           int from = toVisit.poll();

           order[visited++] = from;

           for (int to : adjs.get(from)) {

               incLinkCounts[to]--;

               if (incLinkCounts[to] == 0) toVisit.offer(to);

           }

       }

    return visited == incLinkCounts.length ? order : new int[0];

   }

}

2.DFS实现

public class Solution {

    public int[] findOrder(int numCourses, int[][] prerequisites) {

        int[] incLinkCounts = new int[numCourses];

        List<List<Integer>> adjs = new ArrayList<>(numCourses);

        initialiseGraph(incLinkCounts, adjs, prerequisites);

    //return solveByBFS(incLinkCounts, adjs);

        return  solveByDFS(adjs);

    }

     

    private void initialiseGraph(int[] incLinkCounts, List<List<Integer>> adjs, int[][] prerequisites){

        int n = incLinkCounts.length;

        while (n-- > 0) adjs.add(new ArrayList<>());

        for (int[] edge : prerequisites) {

            incLinkCounts[edge[0]]++;

            adjs.get(edge[1]).add(edge[0]);

        }

   }

    

   private int[] solveByBFS(int[] incLinkCounts, List<List<Integer>> adjs){

       int[] order = new int[incLinkCounts.length];

       Queue<Integer> toVisit = new ArrayDeque<>();

       for (int i = 0; i < incLinkCounts.length; i++) {

           if (incLinkCounts[i] == 0) toVisit.offer(i);

            }

       int visited = 0;

       while (!toVisit.isEmpty()) {

           int from = toVisit.poll();

           order[visited++] = from;

           for (int to : adjs.get(from)) {

               incLinkCounts[to]--;

               if (incLinkCounts[to] == 0) toVisit.offer(to);

           }

       }

    return visited == incLinkCounts.length ? order : new int[0];

   }

    

   private int[] solveByDFS(List<List<Integer>> adjs) {

       BitSet hasCycle = new BitSet(1);

       BitSet visited = new BitSet(adjs.size());

       BitSet onStack = new BitSet(adjs.size());

       Deque<Integer> order = new ArrayDeque<>();

       for (int i = adjs.size() - 1; i >= 0; i--) {

           if (visited.get(i) == false && hasOrder(i, adjs, visited, onStack, order) == falsereturn new int[0];

       }

       int[] orderArray = new int[adjs.size()];

       for (int i = 0; !order.isEmpty(); i++) orderArray[i] = order.pop();

       return orderArray;

   }

 

private boolean hasOrder(int from, List<List<Integer>> adjs, BitSet visited, BitSet onStack, Deque<Integer> order) {

    visited.set(from);

    onStack.set(from);

    for (int to : adjs.get(from)) {

        if (visited.get(to) == false) {

            if (hasOrder(to, adjs, visited, onStack, order) == falsereturn false;

        else if (onStack.get(to) == true) {

            return false;

        }

    }

    onStack.clear(from);

    order.push(from);

    return true;

   }

}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值