题目描述
给定一棵二叉搜索树,请找出其中的第k小的结点。例如, (5,3,7,2,4,6,8) 中,按结点数值大小顺序第三小结点的值为4。
思路
进行中序遍历,并且找到它的第K个结点
用的成员变量来记录result
/*
public class TreeNode {
int val = 0;
TreeNode left = null;
TreeNode right = null;
public TreeNode(int val) {
this.val = val;
}
}
*/
public class Solution {
int count = 0;
TreeNode res = null;
TreeNode KthNode(TreeNode pRoot, int k)
{
knode(pRoot,k);
return res;
}
void knode(TreeNode pRoot,int k){
if(pRoot == null)
return;
KthNode(pRoot.left,k);
count ++;
if(count == k){
res = pRoot;
}
KthNode(pRoot.right,k);
}
}
fsdgfsf
发布了85 篇原创文章 · 获赞 5 · 访问量 4418
私信
关注