设为首页 加入收藏

TOP

Tree Operations 打印出有向图中的环
2015-07-20 17:53:49 来源: 作者: 【 】 浏览:1
Tags:Tree Operations 打印 向图中

题目:

You are given a binary tree with unique integer values on each node. However, the child pointers on each node may point to any other node in the tree including itself, introducing cycles into the binary tree. A cycle is defined when you can traverse back to the same node by following its descendants. Write a function that takes in the root node of the tree and prints out the cycles, if any, in the binary tree. The only operations available on each node are node.left (returns another Node or null), node.right, and node.value (returns the integer value of the node). Pseudocode is fine.

即找出有向图中的环(loop或者cycle),并且全部打印出来。

Example: https://www.cppentry.com/upload_files/article/49/1_iyjly__.png

\

cycles: [1, 2, 4], [5], [3,6]


解答:

import java.util.ArrayList;

public class Graph {

    enum VertexState {
        White, Gray, Black
    }
    
    public static void main(String[] args) {
        Node node = new Node(0);
        node.color = VertexState.White;
        Node left = new Node(1);
        left.color = VertexState.White;
        node.left = left;
        Node right = new Node(2);
        right.color = VertexState.White;
        Node rightright = new Node(3);       
        node.right = right;
        left.left = node;
        right.right = rightright;
        rightright.right = node;
        
        ArrayList
  
    list = new ArrayList
   
    (); ArrayList
    
     > ret = new ArrayList
     
      >(); rec(node, list, ret); System.out.println(ret); } public static void rec(Node node, ArrayList
      
        list, ArrayList
       
        > ret) { if(node.color == VertexState.Gray) { ret.add(new ArrayList
        
         (list)); return; } node.color = VertexState.Gray; list.add(node); if(node.left != null && node.left.color != VertexState.Black) { rec(node.left, list, ret); } if(node.right != null && node.right.color != VertexState.Black) { rec(node.right, list, ret); } list.remove(list.size()-1); node.color = VertexState.Black; } public static class Node { int val; Node left; Node right; VertexState color; public Node(int val_) { val = val_; } @Override public String toString() { return this.val + ""; } } } 
        
       
      
     
    
   
  



】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇HDU 4518 ac自动机+数位dp 下一篇求变量的数据类型,typeid,bool,C..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: