210. Course Schedule II
Last updated
Was this helpful?
Last updated
Was this helpful?
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:
Example 2:
Note:
The input prerequisites is a graph represented by a list of edges, not adjacency matrices. Read more about .
You may assume that there are no duplicate edges in the input prerequisites.
与上一题想法类似,不同的是,在queue里处理的每个元素都加进返回值里,如果返回值不足课程数量,说明满足不了上完全部的课,返回空,除此之外直接返回最终值。