Course Schedule 2

Chetan DattaChetan Datta
2 min read

Problem

There are a total of numCourses courses you have to take, labeled from 0 to numCourses - 1. You are given an array prerequisites where prerequisites[i] = [ai, bi] indicates that you must take course bi first if you want to take course ai.

  • For example, the pair [0, 1], indicates that to take course 0 you have to first take course 1.

Return the ordering of courses you should take to finish all courses. If there are many valid answers, return any of them. If it is impossible to finish all courses, return an empty array. (link)

Example 1:

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

Example 3:

Input: numCourses = 1, prerequisites = []
Output: [0]

Solution

This is an application of a topological sort problem.

BFS

class Solution {
    public int[] findOrder(int numCourses, int[][] prerequisites) {
        List<List<Integer>> adjList = createAdjList(numCourses, prerequisites);
        int[] indegrees = createIndegrees(numCourses, prerequisites);
        Queue<Integer> queue = createQueue(indegrees);
        List<Integer> order = new ArrayList<>();

        while(!queue.isEmpty()){
            int vertex = queue.poll();
            order.add(vertex);
            for(int edgeVertex : adjList.get(vertex)){
                indegrees[edgeVertex] -= 1;
                if(indegrees[edgeVertex]==0){
                    queue.add(edgeVertex);
                }
            }
        }
        return order.size()==numCourses ? convert(order) : new int[0];
    }

    private int[] convert(List<Integer> order){
        int[] ans = new int[order.size()];

        for(int i=0; i<order.size(); i++){
            ans[i] = order.get(i);
        }
        return ans;
    }

    private Queue<Integer> createQueue(int[] indegrees){
        Queue<Integer> queue = new ArrayDeque<>();
        for(int i=0; i<indegrees.length; i++){
            if(indegrees[i]==0){
                queue.add(i);
            }
        }
        return queue;
    }


    private int[] createIndegrees(int numCourses, int[][] prerequisites){
        int[] indegrees = new int[numCourses];

        for(int[] edge : prerequisites){
            indegrees[edge[0]]+=1;
        }
        return indegrees;
    }

    private List<List<Integer>> createAdjList(int numCourses, int[][] prerequisites){
        List<List<Integer>> adjList = new ArrayList<>();
        for(int i = 0; i<numCourses; i++){
            adjList.add(new ArrayList<>());
        }
        for(int[] edge : prerequisites){
            adjList.get(edge[1]).add(edge[0]);
        }
        return adjList;
    }
}
0
Subscribe to my newsletter

Read articles from Chetan Datta directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Chetan Datta
Chetan Datta

I'm someone deeply engrossed in the world of software developement, and I find joy in sharing my thoughts and insights on various topics. You can explore my exclusive content here, where I meticulously document all things tech-related that spark my curiosity. Stay connected for my latest discoveries and observations.