友情支持

如果您觉得这个笔记对您有所帮助,看在D瓜哥码这么多字的辛苦上,请友情支持一下,D瓜哥感激不尽,😜

支付宝

微信

有些打赏的朋友希望可以加个好友,欢迎关注D 瓜哥的微信公众号,这样就可以通过公众号的回复直接给我发信息。

wx jikerizhi

公众号的微信号是: jikerizhi因为众所周知的原因,有时图片加载不出来。 如果图片加载不出来可以直接通过搜索微信号来查找我的公众号。

210. Course Schedule II

思考题:看题解,可以通过深度优先遍历来实现。思考如何实现?

0210 1
0210 2

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.

Example 1:

Input: 2, [[1,0]]
Output: [0,1]
Explanation: 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] .

Example 2:

Input: 4, [[1,0],[2,0],[3,1],[3,2]]
Output: [0,1,2,3] or [0,2,1,3]
Explanation: 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] .

Note:

  1. The input prerequisites is a graph represented by a list of edges, not adjacency matrices. Read more about how a graph is represented.

  2. You may assume that there are no duplicate edges in the input prerequisites.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
 * Runtime: 20 ms, faster than 25.39% of Java online submissions for Course Schedule II.
 *
 * Memory Usage: 72.6 MB, less than 6.10% of Java online submissions for Course Schedule II.
 */
public int[] findOrder(int numCourses, int[][] prerequisites) {
    int[][] matrix = new int[numCourses][numCourses];
    int[] indegree = new int[numCourses];
    for (int[] prere : prerequisites) {
        int latter = prere[0];
        int formmer = prere[1];
        matrix[formmer][latter]++;
        indegree[latter]++;
    }
    List<Integer> queue = new ArrayList<>();
    for (int i = 0; i < numCourses; i++) {
        if (indegree[i] == 0) {
            queue.add(i);
        }
    }
    int count = 0;
    for (int j = 0; j < queue.size(); j++) {
        Integer course = queue.get(j);
        count++;
        for (int i = 0; i < numCourses; i++) {
            if (matrix[course][i] != 0) {
                if (--indegree[i] == 0) {
                    queue.add(i);
                }
            }
        }
    }
    if (count == numCourses) {
        int[] result = new int[numCourses];
        for (int i = 0; i < numCourses; i++) {
            result[i] = queue.get(i);
        }
        return result;
    } else {
        return new int[0];
    }
}