欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C++实现LeetCode(207.课程清单)

程序员文章站 2023-12-29 15:46:34
[leetcode] 207. course schedule 课程清单there are a total of n courses you have to take, label...

[leetcode] 207. course schedule 课程清单

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, is it possible for you to finish all courses?

example 1:

input: 2, [[1,0]]
output: true
explanation: there are a total of 2 courses to take.
to take course 1 you should have finished course 0. so it is possible.

example 2:

input: 2, [[1,0],[0,1]]
output: false
explanation: there are a total of 2 courses to take.
to take course 1 you should have finished course 0, and to take course 0 you should
also have finished course 1. so it is impossible.

note:

  1. the input prerequisites is a graph represented by a list of edges, not adjacency matrices. read more about .
  2. you may assume that there are no duplicate edges in the input prerequisites.

hints:

  1. this problem is equivalent to finding if a cycle exists in a directed graph. if a cycle exists, no topological ordering exists and therefore it will be impossible to take all courses.
  2. there are . for example, the input prerequisites is a graph represented by a list of edges. is this graph representation appropriate?
  3. topological sort via dfs - a great video tutorial (21 minutes) on coursera explaining the basic concepts of topological sort.
  4. topological sort could also be done via bfs.

这道课程清单的问题对于我们学生来说应该不陌生,因为在选课的时候经常会遇到想选某一门课程,发现选它之前必须先上了哪些课程,这道题给了很多提示,第一条就告诉了这道题的本质就是在有向图中检测环。 leetcode 中关于图的题很少,有向图的仅此一道,还有一道关于无向图的题是 clone graph。个人认为图这种数据结构相比于树啊,链表啊什么的要更为复杂一些,尤其是有向图,很麻烦。第二条提示是在讲如何来表示一个有向图,可以用边来表示,边是由两个端点组成的,用两个点来表示边。第三第四条提示揭示了此题有两种解法,dfs 和 bfs 都可以解此题。先来看 bfs 的解法,定义二维数组 graph 来表示这个有向图,一维数组 in 来表示每个顶点的入度。开始先根据输入来建立这个有向图,并将入度数组也初始化好。然后定义一个 queue 变量,将所有入度为0的点放入队列中,然后开始遍历队列,从 graph 里遍历其连接的点,每到达一个新节点,将其入度减一,如果此时该点入度为0,则放入队列末尾。直到遍历完队列中所有的值,若此时还有节点的入度不为0,则说明环存在,返回 false,反之则返回 true。代码如下:

解法一:

class solution {
public:
    bool canfinish(int numcourses, vector<vector<int>>& prerequisites) {
        vector<vector<int>> graph(numcourses, vector<int>());
        vector<int> in(numcourses);
        for (auto a : prerequisites) {
            graph[a[1]].push_back(a[0]);
            ++in[a[0]];
        }
        queue<int> q;
        for (int i = 0; i < numcourses; ++i) {
            if (in[i] == 0) q.push(i);
        }
        while (!q.empty()) {
            int t = q.front(); q.pop();
            for (auto a : graph[t]) {
                --in[a];
                if (in[a] == 0) q.push(a);
            }
        }
        for (int i = 0; i < numcourses; ++i) {
            if (in[i] != 0) return false;
        }
        return true;
    }
};

下面来看 dfs 的解法,也需要建立有向图,还是用二维数组来建立,和 bfs 不同的是,像现在需要一个一维数组 visit 来记录访问状态,这里有三种状态,0表示还未访问过,1表示已经访问了,-1 表示有冲突。大体思路是,先建立好有向图,然后从第一个门课开始,找其可构成哪门课,暂时将当前课程标记为已访问,然后对新得到的课程调用 dfs 递归,直到出现新的课程已经访问过了,则返回 false,没有冲突的话返回 true,然后把标记为已访问的课程改为未访问。代码如下:

解法二:

class solution {
public:
    bool canfinish(int numcourses, vector<vector<int>>& prerequisites) {
        vector<vector<int>> graph(numcourses, vector<int>());
        vector<int> visit(numcourses);
        for (auto a : prerequisites) {
            graph[a[1]].push_back(a[0]);
        }
        for (int i = 0; i < numcourses; ++i) {
            if (!canfinishdfs(graph, visit, i)) return false;
        }
        return true;
    }
    bool canfinishdfs(vector<vector<int>>& graph, vector<int>& visit, int i) {
        if (visit[i] == -1) return false;
        if (visit[i] == 1) return true;
        visit[i] = -1;
        for (auto a : graph[i]) {
            if (!canfinishdfs(graph, visit, a)) return false;
        }
        visit[i] = 1;
        return true;
    }
};

github 同步地址:

参考资料:

https://leetcode.com/problems/course-schedule/discuss/58524/java-dfs-and-bfs-solution

https://leetcode.com/problems/course-schedule/discuss/58516/easy-bfs-topological-sort-java

https://leetcode.com/problems/course-schedule/discuss/162743/javac%2b%2bpython-bfs-topological-sorting-o(n-%2b-e)

到此这篇关于c++实现leetcode(207.课程清单)的文章就介绍到这了,更多相关c++实现课程清单内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

上一篇:

下一篇: