题目描述
给定一棵二叉搜索树,请找出其中的第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;
}
}
*/
import java.util.Stack;
public class Solution {
TreeNode KthNode(TreeNode pRoot, int k)
{
Stack<TreeNode> stack = new Stack<TreeNode>();
int index = 0;
if(pRoot==null||k <= 0){
return null;
}
while(pRoot!=null || !stack.empty()){
while(pRoot!=null){
stack.push(pRoot);
pRoot = pRoot.left;
}
pRoot = stack.pop();
index++;
if(index==k){
break;
}
pRoot = pRoot.right;
}
return pRoot;
}
}