码迷,mamicode.com
首页 > 其他好文 > 详细

二叉树遍历 递归非递归

时间:2015-09-21 12:05:20      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

递归 

//递归先序遍历
    public static void pre(TreeNode root){
        if(root==null)  return;
        visit(root);
        if(root.left!=null) pre(root.left);
        if(root.right!=null) pre(root.right);
    }
    
     //递归中序遍历
    public static void in(TreeNode root) {
          if(root == null)return;
          if(root.left!=null)in(root.left);
          visit(root);
          if(root.right!= null)in(root.right);
         }
    
      //递归后序遍历
    public static void post(TreeNode root) {
          if(root == null)return;
          if(root.left!=null)in(root.left);
          if(root.right!= null)in(root.right);
          visit(root);
         }

非递归:

//非递归前序遍历--栈
    public static void preTraverse(TreeNode root){
        Stack<TreeNode> s=new Stack<TreeNode>();
        s.push(root);
        while(!s.isEmpty()){
            TreeNode current=s.pop();
            visit(current);
            if(current.right!=null) s.push(current.right);
            if(current.left!=null) s.push(current.left);
        }
        
    }
    //非递归前序遍历--队列
    public static void preTraverse2(TreeNode root){
        Queue<TreeNode> q=new LinkedList<TreeNode>();
        q.offer(root);
        while(!q.isEmpty()){
            TreeNode current=q.poll();
            visit(current);
            if(current.left!=null) q.offer(current.left);
            if(current.right!=null) q.offer(current.right);
            
        }
        
    }
    //非递归中序遍历
    public static void inTraverse(TreeNode root){
        Stack<TreeNode> s=new Stack<TreeNode>();
        TreeNode t=root;
        while(!s.isEmpty()||t!=null){
            if(t!=null){
                s.push(t);
                t=t.left;
            }else{
                t=s.pop();
                visit(t);
                t=t.right;            
                }
        }
        
    }

 

二叉树遍历 递归非递归

标签:

原文地址:http://www.cnblogs.com/hhhhh/p/4825513.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!