二叉搜索树的第k个结点(中序遍历顺序的第k个)

题目描述

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

思路:递归求中序遍历,然后序列的第k个就是要求的 

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

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

    }

}
*/
public class Solution {
	int sum=0;
    TreeNode KthNode(TreeNode pRoot, int k)
    {
        if(pRoot!=null){
        	TreeNode node=KthNode(pRoot.left, k);
        	if(node!=null){
        		return node;
        	}
        	if(++sum ==k){
        		return pRoot;
        	}
        	node=KthNode(pRoot.right, k);
        	if(node !=null){
        		return node;
        	}
        }
        return null;
    }
}

猜你喜欢

转载自blog.csdn.net/wangdongli_1993/article/details/82192807