题解 | #二叉搜索树的第k个节点#
二叉搜索树的第k个节点
http://www.nowcoder.com/practice/57aa0bab91884a10b5136ca2c087f8ff
/*
* public class TreeNode {
* int val = 0;
* TreeNode left = null;
* TreeNode right = null;
* public TreeNode(int val) {
* this.val = val;
* }
* }
*/
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param proot TreeNode类
* @param k int整型
* @return int整型
*/
ArrayList<Integer> list = new ArrayList<>();
public int KthNode (TreeNode proot, int k) {
// write code here
int returnValue = -1;
if(proot == null || k == 0){
return returnValue;
}
zhongXu(proot,k);
if(k <= list.size()){
returnValue = list.get(k -1);
}
return returnValue;
}
public void zhongXu(TreeNode root, int k){
if(root != null){
zhongXu(root.left,k);
// 当前节点加入list
list.add(root.val);
// 判断是不是已经找到第k小
if(list.size() >= k){
return;
}
zhongXu(root.right,k);
}
}
}