310. Minimum Height Trees

queue:  degree为1的顶点

degree[ i ] : 和 i 顶点关联的边数。

先添加整个图,然后BFS删除每一层degree为1的节点。

  1. class Solution {
  2. public List<Integer> findMinHeightTrees(int n, int[][] edges) {
  3. List<Integer> result = new ArrayList<>();
  4. if(n == 1){
  5. result.add(0);
  6. return result;
  7. }
  8. int[] degree = new int[n];
  9. Map<Integer, List<Integer>> map = new HashMap<>();
  10. for(int i = 0; i < n; i++) map.put(i, new ArrayList<>());
  11. for(int[] pair : edges){
  12. map.get(pair[0]).add(pair[1]);
  13. map.get(pair[1]).add(pair[0]);
  14. degree[pair[0]]++;
  15. degree[pair[1]]++;
  16. }
  17.  
  18. Queue<Integer> queue = new LinkedList<>();
  19. for(int i = 0; i < n; i++){
  20. if(degree[i] == 1) queue.add(i);
  21. }
  22.  
  23. while(!queue.isEmpty()){
  24. List<Integer> list = new ArrayList<>();
  25. int size = queue.size();
  26. for(int i = 0; i < size; i++){
  27. int cur = queue.poll();
  28. list.add(cur);
  29. for(int nei : map.get(cur)){
  30. degree[nei]--;
  31. if(degree[nei] == 1) queue.add(nei);
  32. }
  33. }
  34. result = list;
  35. }
  36. return result;
  37. }
  38. }

261. Graph Valid Tree

Union Find: 并查集,这种方法对于解决连通图的问题很有效,思想是我们遍历节点,如果两个节点相连,我们将其roots值连上,这样可以帮助我们找到环,我们初始化roots数组为-1,然后对于一个pair的两个节点分别调用find函数,得到的值如果相同的话,则说明环存在,返回false,不同的话,我们将其roots值union上

  1. class Solution {
  2. public boolean validTree(int n, int[][] edges) {
  3. int[] nums = new int[n];
  4. Arrays.fill(nums, -1);
  5.  
  6. for(int i = 0; i < edges.length; i++){
  7. int x = find(nums, edges[i][0]);
  8. int y = find(nums, edges[i][1]);
  9.  
  10. if(x == y) return false;
  11. nums[x] = y;
  12. }
  13. return edges.length == n - 1;
  14. }
  15.  
  16. private int find(int[] nums, int i){
  17. if(nums[i] == -1) return i;
  18. return find(nums, nums[i]);
  19. }
  20. }

323. Number of Connected Components in an Undirected Graph

寻找无向图里的连通量。用并查集的方法。

建立一个root数组,下标和节点值相同,此时root[i]表示节点i属于group i,我们初始化了n个部分 (res = n),假设开始的时候每个节点都属于一个单独的区间,然后我们开始遍历所有的edge,对于一条边的两个点,他们起始时在root中的值不相同,这时候我们我们将结果减1,表示少了一个区间,然后更新其中一个节点的root值,使两个节点的root值相同,那么这样我们就能把连通区间的所有节点的root值都标记成相同的值,不同连通区间的root值不相同,这样也能找出连通区间的个数。

 1) x != y  :两个点原来是不相通的,现在连接了,把后一个点的root更新与x相同。

 2) x == y : 两个点是相通的,res不需要减一。

  1. class Solution {
  2. public int countComponents(int n, int[][] edges) {
  3. int res = n;
  4. int[] root = new int[n];
  5. for(int i = 0; i < n; i++){
  6. root[i] = i;
  7. }
  8. for(int[] edge : edges){
  9. int x = find(root, edge[0]);
  10. int y = find(root, edge[1]);
  11. if(x != y){
  12. res--;
  13. root[y] = x;
  14. }
  15. }
  16. return res;
  17. }
  18.  
  19. private int find(int[] root, int i){
  20. while(root[i] != i) i = root[i];
  21. return i;
  22. }
  23. }

305. Number of Islands II

用int nb = n * x + y转为一维数组

  1. class Solution {
  2. int[][] dirs ={{0, 1}, {1, 0}, {-1, 0}, {0, -1}};
  3.  
  4. public List<Integer> numIslands2(int m, int n, int[][] positions) {
  5. List<Integer> res = new ArrayList<>();
  6. if(m <= 0 || n <= 0) return res;
  7.  
  8. int count = 0;
  9. int[] roots = new int[m * n];
  10. Arrays.fill(roots, -1);
  11.  
  12. for(int[] p : positions){
  13. int root = n * p[0] + p[1];
  14. if(roots[root] != -1){
  15. res.add(count);
  16. continue;
  17. }
  18. roots[root] = root;
  19. count++;
  20.  
  21. for(int[] dir : dirs){
  22. int x = p[0] + dir[0];
  23. int y = p[1] + dir[1];
  24. int nb = n * x + y;
  25. if(x < 0 || x >= m || y < 0 || y >= n || roots[nb] == -1) continue;
  26.  
  27. int rootSurr = find(roots, nb);
  28. if(root != rootSurr){
  29. roots[root] = rootSurr;
  30. root = rootSurr;
  31. count--;
  32. }
  33. }
  34. res.add(count);
  35. }
  36. return res;
  37. }
  38.  
  39. public int find(int[] roots, int i){
  40. while(i != roots[i]) i = roots[i];
  41. return i;
  42. }
  43. }

<Graph> Topological + Undirected Graph 310 Union Find 261 + 323 + (hard)305的更多相关文章

  1. PLSQL_基础系列03_合并操作UNION / UNION ALL / MINUS / INTERSET(案例)

    2014-11-30 Created By BaoXinjian

  2. UOJ 310 黎明前的巧克力(FWT)

    [题目链接] http://uoj.ac/problem/310 [题目大意] 给出一个数集,A从中选择一些数,B从中选择一些数,不能同时不选 要求两者选择的数异或和为0,问方案数 [题解] 题目等价 ...

  3. SQL使用union合并查询结果(转载)

    1.UNION的作用  UNION 指令的目的是将两个 SQL 语句的结果合并起来.从这个角度来看, UNION 跟 JOIN 有些许类似,因为这两个指令都可以由多个表格中撷取资料. UNION 的一 ...

  4. LeetCode Number of Connected Components in an Undirected Graph

    原题链接在这里:https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/ 题目: Giv ...

  5. Leetcode: Graph Valid Tree && Summary: Detect cycle in undirected graph

    Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge is a pair of nodes), ...

  6. 323. Number of Connected Components in an Undirected Graph按照线段添加的并查集

    [抄题]: Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge is a pair of n ...

  7. LeetCode 323. Number of Connected Components in an Undirected Graph

    原题链接在这里:https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/ 题目: Giv ...

  8. 323. Number of Connected Components in an Undirected Graph (leetcode)

    Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge is a pair of nodes), ...

  9. Number of Connected Components in an Undirected Graph -- LeetCode

    Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge is a pair of nodes), ...

随机推荐

  1. Git问题汇总

    1.fatal: refusing to merge unrelated histories $git pull origin master --allow-unrelated-histories 2 ...

  2. LeetCode刷题191124

    博主渣渣一枚,刷刷leetcode给自己瞅瞅,大神们由更好方法还望不吝赐教.题目及解法来自于力扣(LeetCode),传送门. 算法: 给出一个无重叠的 ,按照区间起始端点排序的区间列表. 在列表中插 ...

  3. 一个MongoDB索引走偏的案例及探究分析

    接业务需求,有一个MongoDB的简单查询,太耗时了,执行了 70S 左右,严重影响用户的体验.. 查询代码主要如下: db.duoduologmodel.find({"Tags.SN&qu ...

  4. C# $插值符号

    概述 $ 符是在C#6.0出现的一个新特性,本质就是C#的一个语法糖,作用在于替代当前的String.format(),简化其过程.他们的作用都在于为字符串提供占位符,并为字符串传入变量. 用法 关于 ...

  5. Java中dimension类详解

    Java中dimension类详解 https://blog.csdn.net/hrw1234567890/article/details/81217788

  6. web安全技术--XSS和CSRF

    Xss一般是脚本代码,主要是JS的,但是也有AS和VBS的. 主要分为反射型,存储型,DOM型三个大类. 一般来讲在手工测试的时候先要考虑的地方就是哪里有输入那里有输出. 然后是进行敏感字符测试,通常 ...

  7. 获取IP的三种方法

    第一种 取本主机ip地址 public string GetLocalIp() { ///获取本地的IP地址 string AddressIP = string.Empty; foreach (IPA ...

  8. C语言程序设计100例之(16):巧解算式

    例16  巧解算式 问题描述 在1.2.3.4.5.6.7.8.9.10个数中间加上加号或减号,使得到的表达式的值为自然数N,如果中间没有符号,则认为前后为一个数,如1 2 3认为是一百二十三(123 ...

  9. python3 连接 zookeeper

    zookeeper的增 删 改 查 watch监听. from kazoo.client import KazooClient import time,os import timeit os.chdi ...

  10. Spring 框架基础(01):核心组件总结,基础环境搭建

    本文源码:GitHub·点这里 || GitEE·点这里 一.Spring框架 1.框架简介 Spring是一个开源框架,框架的主要优势之一就是其分层架构,分层架构允许使用者选择使用哪一个组件,同时为 ...