二叉搜索树的第k个结点
题目描述
给定一颗二叉搜索树,请找出其中的第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 {
TreeNode pRoot1=null;
int count=1;
TreeNode KthNode(TreeNode pRoot, int k)
{
KthNode1(pRoot, k);
return pRoot1;
}
void KthNode1(TreeNode pRoot, int k)
{
if(pRoot!=null){
KthNode(pRoot.left,k);
if(count==k){
pRoot1=pRoot;
// return;
}
count++;
KthNode( pRoot.right,k);
}
}
}