二叉搜索树(Binary Search Tree)(又:二叉查找树,二叉排序树)
它或者是一颗空树,或者是具有下列性质的二叉树;若它的左子树不空,则左子树上所有的结点的值均小于它的根节点的值,若它的右子树不空,则右子树上所有的结点的值均大于它的根结点的值。
它的左、右子树也分别为二叉排序树
例题
给定一颗二叉搜索树,请找出其中的第k小的结点。例如, 5 / \ 3 7 /\ /\ 24 6 8 中,按结点数值大小顺序第三个结点的值为4。
分析:二叉搜索树按照中序遍历的顺序打印出来正好就是排序好的顺序。
所以,按照中序遍历顺序找到第k个结点就是结果。
if(node!=null)的作用是,当找到对应的结点时,一路返回到最初的递归
否则,都是为null,继续递归
/**
*
* @author zy
* @date 2017年10月13日 下午4:40:36
* @Decription 给定一颗二叉搜索树,请找出其中的第k大的结点。例如, 5 / \ 3 7 /\ /\ 2 4 6 8
* 中,按结点数值大小顺序第三个结点的值为4。
*/
class TreeNode {
int val = 0;
TreeNode left = null;
TreeNode right = null;
public TreeNode(int val) {
this.val = val;
}
}
public class Ex6 {
int index = 0; //计数器
/*
* 中序遍历
*/
TreeNode KthNode(TreeNode pRoot,int k){
if (pRoot!=null) {
TreeNode node = KthNode(pRoot.left, k);
if (node != null) {
return node;
}
index++;
if (index==k) {
return pRoot;
}
node = KthNode(pRoot.right, k);
if (node!=null) {
return node;
}
}
return null;
}
}