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

4.6---找二叉树中序后继(CC150)

时间:2015-12-22 23:08:10      阅读:368      评论:0      收藏:0      [点我收藏+]

标签:

因为,没有重复值,所以只需要做一个标记就OK了。

public class Successor {
      static boolean flag = false;
    static int result = 0;
    public int findSucc(TreeNode root, int p) {
        // write code here
        inOrder(root,p);
        return result;
        
    }
    
    public static void inOrder(TreeNode root,int p){
        if(root == null) return ;
        
        inOrder(root.left,  p);
        if(flag){
            result = root.val;
            flag = false;
            return;
        }
        if(p == root.val){
            flag = true;
        }
        inOrder(root.right,p);
    }
}

 

4.6---找二叉树中序后继(CC150)

标签:

原文地址:http://www.cnblogs.com/yueyebigdata/p/5068368.html

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