摘要: 207. Course Schedule 题意:每个课程会有一个先修课程,给定一张图,判断能否按顺序修完所有课程 我的思路:拓扑排序裸题 我的代码: class Solution { public: struct Node { int to, next; }; bool canFinish(int 阅读全文
posted @ 2017-05-30 21:31 Silence、 阅读(496) 评论(0) 推荐(0) 编辑