• 210. 课程表 II(leetcode210,ArrayList类型的数组创建,拓扑排序)-------------------Java实现


    210. 课程表 II(leetcode210,ArrayList类型的数组创建,拓扑排序)-------------------Java实现

    题目表述

    现在你总共有 numCourses 门课需要选,记为 0 到 numCourses - 1。给你一个数组 prerequisites ,其中 prerequisites[i] = [ai, bi] ,表示在选修课程 ai 前 必须 先选修 bi 。

    例如,想要学习课程 0 ,你需要先完成课程 1 ,我们用一个匹配来表示:[0,1] 。
    返回你为了学完所有课程所安排的学习顺序。可能会有多个正确的顺序,你只要返回 任意一种 就可以了。如果不可能完成所有课程,返回 一个空数组 。

    样例

    输入:numCourses = 4, prerequisites = [[1,0],[2,0],[3,1],[3,2]]
    输出:[0,2,1,3]
    解释:总共有 4 门课程。要学习课程 3,你应该先完成课程 1 和课程 2。并且课程 1 和课程 2 都应该排在课程 0 之后。
    因此,一个正确的课程顺序是 [0,1,2,3] 。另一个正确的排序是 [0,2,1,3] 。

    条件

    1 <= numCourses <= 2000
    0 <= prerequisites.length <= numCourses * (numCourses - 1)
    prerequisites[i].length == 2
    0 <= ai, bi < numCourses
    ai != bi
    所有[ai, bi] 互不相同

    思路

    拓扑排序

    注意点

    注意! 第一个才是尾结点。

    ac代码

    Java:
    package leetcode210;
    
    import java.util.*;
    
    class Solution {
        public int[] findOrder(int numCourses, int[][] prerequisites) {
            ArrayList<Integer> s_to_target[] = new ArrayList[numCourses];
            for (int i=0;i<s_to_target.length;i++)
                s_to_target[i] = new ArrayList<>();
            int[] pointed = new int[numCourses];
            int[] result = new int[numCourses];
            int sum = 0;
            for (int [] row:prerequisites) {
                s_to_target[row[1]].add(row[0]);
                pointed[row[0]]++;
            }
            Deque<Integer> queue = new LinkedList<>();
    
            for (int i=0;i<numCourses;i++)
                if (pointed[i]==0)
                    queue.offerFirst(i);
            while(!queue.isEmpty()){
                int source = queue.pollFirst();
                result[sum++] = source;
                for (Integer now:s_to_target[source])
                {
                    pointed[now]--;
                    if (pointed[now]==0)
                        queue.offerFirst(now);
                }
            }
            return (sum==numCourses)?result:new int[0];
        }
    }
    public class leetcode210 {
    
        public static void main(String[] args) {
            Scanner cin = new Scanner(System.in);
            int numCourses = cin.nextInt();
            cin.nextLine();
            int sum=0;
            int max = 4000001;
            int[][] prerequisites = new int[max][2];
            for (int i=0;i<max;i++)
            {
                String line = cin.nextLine();
                if (line.isEmpty())
                {
                    sum = i;
                    break;
                }
                String[] s = line.split(" ");
                prerequisites[i] = new int[s.length];
                for (int j=0;j<s.length;j++)
                    prerequisites[i][j] = Integer.parseInt(s[j]);
    
            }
            int [][] prerequisite = Arrays.copyOfRange(prerequisites,0,sum);
            Solution s = new Solution();
            int[] result = s.findOrder(numCourses,prerequisite);
            System.out.println("result:");
            for (int now :result)
                System.out.print(now+" ");
        }
    }
    ###input:
    4
    1 0
    2 0
    3 1
    3 2
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74

    来源:力扣(LeetCode
    链接:https://leetcode-cn.com/problems/squares-of-a-sorted-array
    著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

  • 相关阅读:
    零基础爬虫之http协议
    Pt/CeO2单原子纳米酶|H-rGO-Pt@Pd NPs纳米酶|碳纳米管负载铂颗粒纳米酶|白血病拮抗多肽修饰的FeOPtPEG复合纳米酶
    MySQL (2)
    校园小程序毕业设计,学校小程序设计与实现,毕设作品参考
    Mysql--技术文档--索引-《索引为什么查找数据快?》-超底层详细说明索引
    Java应用|使用Apache Spark MLlib构建机器学习模型
    TOPDON获评2023年度“汽车后市场科技创新企业”,研发实力被认可
    【论文整理1】On the Continuity of Rotation Representations in Neural Networks
    Ansible自动化部署工具-role模式安装filebeat实际案例分析
    软件项目管理实践指南:有效规划、执行和控制
  • 原文地址:https://blog.csdn.net/yusude123456/article/details/132817990