剑指Offer-二叉树-(14)

知识点/数据结构:二叉树

题目描述
给定一棵二叉搜索树,请找出其中的第k小的结点。例如, (5,3,7,2,4,6,8) 中,按结点数值大小顺序第三小结点的值为4。

/*
public class TreeNode {
    int val = 0;
    TreeNode left = null;
    TreeNode right = null;

    public TreeNode(int val) {
        this.val = val;

    }

}
*/
public class Solution {
   int index=0;//自己写在了里边。要放在全局变量。
   public  TreeNode KthNode(TreeNode pRoot, int k){
        //思路:二叉搜索树按照中序遍历的顺序打印出来正好就是排序好的顺序。
        //所以,按照中序遍历顺序找到第k个结点就是结果。
        
        if(pRoot!=null){
            TreeNode node=KthNode(pRoot.left,k);
             //开始自己这里没加判断
            if(node != null) {return node;}
            index++;
            if(k==index)   {return pRoot;}
            
            node=KthNode(pRoot.right,k);
            if(node != null)  { return node; }
        }
        return null;
    }
}

猜你喜欢

转载自blog.csdn.net/qq_35649064/article/details/84891640