zoukankan      html  css  js  c++  java
  • 261. Graph Valid Tree

    package LeetCode_261
    
    import java.util.*
    
    
    /**
     * 261. Graph Valid Tree
     * Lock by leetcode
     * https://www.lintcode.com/problem/graph-valid-tree/description
     *
     * Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge is a pair of nodes),
     * write a function to check whether these edges make up a valid tree.
    You can assume that no duplicate edges will appear in edges.
    Since all edges are undirected, [0, 1] is the same as [1, 0] and thus will not appear together in edges.
     * */
    class Solution {
        /*
        * valid Tree, must a connected graph and acyclic
        * */
        fun validTree(n: Int, edges: Array<IntArray>): Boolean {
            val graph = HashMap<Int, ArrayList<Int>>()
            //init
            for (i in 0 until n) {
                graph[i] = ArrayList()
            }
            //create graph
            for (edge in edges) {
                graph[edge.get(0)]!!.add(edge.get(1))
                graph[edge.get(1)]!!.add(edge.get(0))
            }
    
            val visited = BooleanArray(n)
    
            val queue = LinkedList<Int>()
    
            queue.offer(0)
    
            while (!queue.isEmpty()) {
                val top = queue.poll()
                if (visited[top]) {
                    return false
                }
                visited[top] = true
                val list = graph[top]
                if (list == null) {
                    continue
                }
                for (item in list) {
                    if (!visited[item]) {
                        queue.offer(item)
                    }
                }
            }
    
            for (v in visited) {
                if (!v) {
                    return false
                }
            }
    
            return true
        }
    }
  • 相关阅读:
    SQL Server 存储过程
    FindControl的详细介绍
    Transaction-SQL 游标
    硬盘安装工具nt6 hdd installer无法卸载的问题
    Some question about Source Tree
    java 简单加密
    java 多态与多重继承
    构造方法和方法的重载
    64位WIN7上安装11G R2 ,PLSQL的配置方法
    语录(排名不分先后)
  • 原文地址:https://www.cnblogs.com/johnnyzhao/p/12736487.html
Copyright © 2011-2022 走看看