zoukankan      html  css  js  c++  java
  • [LeetCode] 210. Course Schedule II Java

    题目:

    There are a total of n courses you have to take, labeled from 0 to n - 1.

    Some courses may have prerequisites, for example to take course 0 you have to first take course 1, which is expressed as a pair: [0,1]

    Given the total number of courses and a list of prerequisite pairs, return the ordering of courses you should take to finish all courses.

    There may be multiple correct orders, you just need to return one of them. If it is impossible to finish all courses, return an empty array.

    For example:

    2, [[1,0]]

    There are a total of 2 courses to take. To take course 1 you should have finished course 0. So the correct course order is [0,1]

    4, [[1,0],[2,0],[3,1],[3,2]]

    There are a total of 4 courses to take. To take course 3 you should have finished both courses 1 and 2. Both courses 1 and 2 should be taken after you finished course 0. So one correct course order is [0,1,2,3]. Another correct ordering is[0,2,1,3].

    题意及分析:给出一个课程序列,有些课程需要先序课程,求一个满足条件的课程排序顺序。可以使用拓扑排序,每次删除一个入度为0的点,用一个list保存每次删除的点(入度为0的点),因为我这里是把先序课程放在前面的,所以最后需要将list反转一下保存到数组中输出。总体和200题类似。

    代码:

    public class Solution {
        public int[] findOrder(int numCourses, int[][] prerequisites) {
            int[] map=new int[numCourses];
            for(int i=0;i<prerequisites.length;i++){        //计算每个点的入度
                map[prerequisites[i][0]]++;
            }
            Queue<Integer> queue = new LinkedList<>();  //记录入度为0的点
            for(int i=0;i<map.length;i++){
                if(map[i]==0) queue.add(i);
            }
            List<Integer> res = new ArrayList<>();
            int count = queue.size();   //初始的入度为o的点
            while(!queue.isEmpty()){
                int temp = queue.poll();
                res.add(temp);
                for(int i=0;i<prerequisites.length;i++){
                    if(temp== prerequisites[i][1]){
                        int t  = prerequisites[i][0];
                        map[t]--;
                        if(map[t]==0){
                            queue.add(t);
                            count++;
                        }
                    }
                }
            }
            if(count!=numCourses){
                int[] a = new int[0];
                return a;
            }else {
                int[] a = new int[res.size()];
                for(int i=res.size()-1;i>=0;i--){       //这里需要反转一下
                    a[i] = res.get(i);
                }
                return a;
            }
        }
    }
  • 相关阅读:
    使用部分函数时并未include其所在头文件,但是能编译成功且能运行,为什么?
    ubuntu开发机所需工具,做个记录,不断补充
    c cpp编程用到的系统边角与其拾遗
    几个递进的make file
    可以用命令行控制eclipse断点增加删除、远程调试创建与启动的插件
    Mac 从睡眠恢复后没有声音的问题
    [netty4][netty-handler]netty之idle handler处理
    《将博客搬至CSDN》
    python2与python3中__metacalss__的不同用法
    python3 type和object的关系
  • 原文地址:https://www.cnblogs.com/271934Liao/p/7244240.html
Copyright © 2011-2022 走看看