"Leetcode" Course Schedule II

Source: Internet
Author: User

Title Link: https://leetcode.com/problems/course-schedule-ii/

Topic:
There is a total of n courses you have to take, labeled from 0 to N-1.

Some courses May has 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 fini SH all courses.

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

For example:

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

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

Ideas:
As with the method of solving the puzzle, just increase the record of the results in the process, this step.

Algorithm:

     Public int[]FindOrder(intNumcourses,int[] Prerequisites) {intPrecount[] =New int[Numcourses]; Queue<integer> Notpre =NewLinkedlist<integer> ();intRes[] =New int[Numcourses];intnum =-1;//number of nodes that can be topological sorted        //Count the number of times each node is a precursor         for(inti =0; i < prerequisites.length; i++) {precount[prerequisites[i][0]]++; }//Record a node with a degree of 0         for(inti =0; i < precount.length; i++) {if(Precount[i] = =0) {Notpre.offer (i);                num++;            Res[num] = i; }        } while(!notpre.isempty ()) {//BFS            intnode = Notpre.poll (); for(inti =0; i < prerequisites.length; i++) {if(prerequisites[i][1] = = node) {precount[prerequisites[i][0]]--;//Delete and node-related edges                    if(precount[prerequisites[i][0]] ==0) {//If the out degree is 0num++; Res[num] = prerequisites[i][0]; Notpre.offer (prerequisites[i][0]); }                }            }        }return(num+1) = = Numcourses? Res:New int[0]; }

"Leetcode" Course Schedule II

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.