剑指Offer六十二: 二叉搜索树的第k个结点

题干

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

思路

二叉搜索树? 中序不就是有序吗,找出第几小的,就在中序序列中直接定位即可。

代码

public class Solution {
     int index = 0; //计数器
    TreeNode KthNode(TreeNode root, int k)
    {
        if(root != null){ //中序遍历寻找第k个
            TreeNode node = KthNode(root.left,k);
            if(node != null)
                return node;
            index ++;
            if(index == k)
                return root;
            node = KthNode(root.right,k);
            if(node != null)
                return node;
        }
        return null;
    }

}
发布了84 篇原创文章 · 获赞 53 · 访问量 7382

猜你喜欢

转载自blog.csdn.net/weixin_44015043/article/details/105422808