首页 > 其他 > 详细

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

时间:2015-12-22 23:05:39      阅读:362      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!