Topological sort题型总结

2024-09-04 14:48
文章标签 总结 sort 题型 topological

本文主要是介绍Topological sort题型总结,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

拓扑排序是对有向无环图的顶点的一种排序,

  • 检测编译时的循环依赖

  • 制定有依赖关系的任务的执行顺序

拓扑排序的算法是典型的宽度优先搜索算法,其大致流程如下:

  1. 统计所有点的入度,并初始化拓扑序列为空。

  2. 将所有入度为 0 的点,也就是那些没有任何依赖的点,放到宽度优先搜索的队列中

  3. 将队列中的点一个一个的释放出来,放到拓扑序列中,每次释放出某个点 A 的时候,就访问 A 的相邻点(所有A指向的点),并把这些点的入度减去 1。

  4. 如果发现某个点的入度被减去 1 之后变成了 0,则放入队列中。

  5. 直到队列为空时,算法结束,

1. graph怎么构建

Graph 一般是adjecent list,

class DirectedGraphNode {

    int label;

    List<DirectedGraphNode> neighbors;

    ...

}

也可以使用 HashMap 和 HashSet 搭配的方式来存储邻接表

hashmap<Integer, List<Integer>>() 或者HashMap<Integer, HashSet<Integer>>() 来表示;

2.indegree怎么构建

array 或者hashmap<Node, Integer>

3. queue,构建拓扑排序,每次pop 入度为0的node;

首先来个经典的题目: Topological sort;

For graph as follow:

图片

The topological order can be:

[0, 1, 2, 3, 4, 5]
[0, 2, 3, 1, 5, 4]

思路:标准topo排序的算法;算indegree,然后每次remove node,neighbor的入度全部减1,以此循环;

/*** Definition for Directed graph.* class DirectedGraphNode {*     int label;*     ArrayList<DirectedGraphNode> neighbors;*     DirectedGraphNode(int x) { label = x; neighbors = new ArrayList<DirectedGraphNode>(); }* };*/public class Solution {/** @param graph: A list of Directed graph node* @return: Any topological order for the given graph.*/public ArrayList<DirectedGraphNode> topSort(ArrayList<DirectedGraphNode> graph) {ArrayList<DirectedGraphNode> list = new ArrayList<DirectedGraphNode>();HashMap<DirectedGraphNode, Integer> indegree = new HashMap<DirectedGraphNode, Integer>();for(DirectedGraphNode node: graph) {// node -> neighbor, neighbor indegree + 1 ;for(DirectedGraphNode neighbor: node.neighbors) {if(indegree.containsKey(neighbor)){indegree.put(neighbor, indegree.get(neighbor) + 1);} else {indegree.put(neighbor, 1);}}}Queue<DirectedGraphNode> queue = new LinkedList<DirectedGraphNode>();for(DirectedGraphNode node: graph) {// if indegree not contains, means indegree is 0;if(!indegree.containsKey(node)){queue.offer(node);}}while(!queue.isEmpty()) {DirectedGraphNode node = queue.poll();list.add(node);for(DirectedGraphNode neighbor : node.neighbors) {indegree.put(neighbor, indegree.get(neighbor) - 1);if(indegree.get(neighbor) == 0) {queue.offer(neighbor);}}}return list;}
}

Course Schedule

[1,0] 代表的物理意义是:0 --> 1 

思路:用hashmap build adjecent list,然后记录indegree,neighbor indegree相互减1.  return count == numCourses.

class Solution {public boolean canFinish(int numCourses, int[][] prerequisites) {if(prerequisites == null || numCourses < 0) {return false;}int[] indegree = new int[numCourses];HashMap<Integer, List<Integer>> graph = new HashMap<>();for(int i = 0; i < numCourses; i++) {graph.putIfAbsent(i, new ArrayList<>());}for(int[] prerequist : prerequisites) {int course = prerequist[0];int pcourse = prerequist[1];// pcourse -> course;graph.get(pcourse).add(course);indegree[course]++;}Queue<Integer> queue = new LinkedList<>();for(int i = 0; i < numCourses; i++) {if(indegree[i] == 0) {queue.offer(i);}}int count = 0;while(!queue.isEmpty()) {Integer node = queue.poll();count++;for(Integer neighbor: graph.get(node)) {indegree[neighbor]--;if(indegree[neighbor] == 0) {queue.offer(neighbor);}}}return count == numCourses;}
}

Alien Dictionary 思路:从单词之间的关系来得到图的关系, 注意所有的char都是一个node,都是字母;然后用hashmap<Character, HashSet<Character>>来建立图。注意分函数写程序,这样清晰;注意indegree需要把每个node全部赋值为0;然后再进行+1;

class Solution {public String alienOrder(String[] words) {if(words == null || words.length == 0) {return "";}HashMap<Character, HashSet<Character>> graph = new HashMap<>();// 每个character,都得在graph里面建立一个node;for(String word: words) {for(int i = 0; i < word.length(); i++) {graph.putIfAbsent(word.charAt(i), new HashSet<Character>());}}for(int i = 0; i < words.length - 1; i++) {String worda = words[i];String wordb = words[i + 1];int minlen = Math.min(worda.length(), wordb.length());for(int j = 0; j < minlen; j++) {char ac = worda.charAt(j);char bc = wordb.charAt(j);graph.putIfAbsent(ac, new HashSet<Character>());graph.putIfAbsent(bc, new HashSet<Character>());// ac -> bc;if(ac != bc) {graph.get(ac).add(bc);break;}}// 特殊情况return abc -> ab, return "";if(worda.length() > wordb.length() && worda.substring(0, minlen).equals(wordb.substring(0, minlen))) {return "";}}HashMap<Character, Integer> indegree = new HashMap<>();buildIndegree(indegree, graph);Queue<Character> queue = new LinkedList<Character>();StringBuilder sb = new StringBuilder();for(Character node: indegree.keySet()) {if(indegree.get(node) == 0) {queue.offer(node);}}while(!queue.isEmpty()) {Character node = queue.poll();sb.append(node);for(Character neighbor: graph.get(node)) {indegree.put(neighbor, indegree.get(neighbor) - 1);if(indegree.get(neighbor) == 0) {queue.offer(neighbor);}}}return sb.length() == indegree.keySet().size() ? sb.toString() : "";}private void buildIndegree(HashMap<Character, Integer> indegree,HashMap<Character, HashSet<Character>> graph) {// graph的每个node,indegree初始为0;for(Character node: graph.keySet()) {indegree.putIfAbsent(node, 0);}for(Character node: graph.keySet()) {for(Character neighbor: graph.get(node)) {indegree.put(neighbor, indegree.getOrDefault(neighbor, 0) + 1);}}}
}

这篇关于Topological sort题型总结的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1136281

相关文章

Python中实现进度条的多种方法总结

《Python中实现进度条的多种方法总结》在Python编程中,进度条是一个非常有用的功能,它能让用户直观地了解任务的进度,提升用户体验,本文将介绍几种在Python中实现进度条的常用方法,并通过代码... 目录一、简单的打印方式二、使用tqdm库三、使用alive-progress库四、使用progres

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

Java向kettle8.0传递参数的方式总结

《Java向kettle8.0传递参数的方式总结》介绍了如何在Kettle中传递参数到转换和作业中,包括设置全局properties、使用TransMeta和JobMeta的parameterValu... 目录1.传递参数到转换中2.传递参数到作业中总结1.传递参数到转换中1.1. 通过设置Trans的

C# Task Cancellation使用总结

《C#TaskCancellation使用总结》本文主要介绍了在使用CancellationTokenSource取消任务时的行为,以及如何使用Task的ContinueWith方法来处理任务的延... 目录C# Task Cancellation总结1、调用cancellationTokenSource.

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

学习hash总结

2014/1/29/   最近刚开始学hash,名字很陌生,但是hash的思想却很熟悉,以前早就做过此类的题,但是不知道这就是hash思想而已,说白了hash就是一个映射,往往灵活利用数组的下标来实现算法,hash的作用:1、判重;2、统计次数;

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的

二分最大匹配总结

HDU 2444  黑白染色 ,二分图判定 const int maxn = 208 ;vector<int> g[maxn] ;int n ;bool vis[maxn] ;int match[maxn] ;;int color[maxn] ;int setcolor(int u , int c){color[u] = c ;for(vector<int>::iter

整数Hash散列总结

方法:    step1  :线性探测  step2 散列   当 h(k)位置已经存储有元素的时候,依次探查(h(k)+i) mod S, i=1,2,3…,直到找到空的存储单元为止。其中,S为 数组长度。 HDU 1496   a*x1^2+b*x2^2+c*x3^2+d*x4^2=0 。 x在 [-100,100] 解的个数  const int MaxN = 3000